2020-09-13 19:27:47 +08:00
|
|
|
|
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
|
|
|
|
// versions:
|
2023-08-06 23:36:50 +08:00
|
|
|
|
// protoc-gen-go v1.31.0
|
2022-03-04 15:44:39 +08:00
|
|
|
|
// protoc v3.19.4
|
2020-09-13 19:27:47 +08:00
|
|
|
|
// source: service_node.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 CreateNodeRequest struct {
|
|
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
2020-12-17 15:51:09 +08:00
|
|
|
|
Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
|
|
|
|
|
|
NodeClusterId int64 `protobuf:"varint,2,opt,name=nodeClusterId,proto3" json:"nodeClusterId,omitempty"`
|
2021-05-25 17:08:52 +08:00
|
|
|
|
NodeLogin *NodeLogin `protobuf:"bytes,3,opt,name=nodeLogin,proto3" json:"nodeLogin,omitempty"`
|
|
|
|
|
|
NodeGroupId int64 `protobuf:"varint,4,opt,name=nodeGroupId,proto3" json:"nodeGroupId,omitempty"`
|
2023-08-06 23:36:50 +08:00
|
|
|
|
// Deprecated: Marked as deprecated in service_node.proto.
|
2021-07-31 22:23:16 +08:00
|
|
|
|
DnsDomainId int64 `protobuf:"varint,5,opt,name=dnsDomainId,proto3" json:"dnsDomainId,omitempty"`
|
|
|
|
|
|
DnsRoutes []string `protobuf:"bytes,6,rep,name=dnsRoutes,proto3" json:"dnsRoutes,omitempty"`
|
|
|
|
|
|
NodeRegionId int64 `protobuf:"varint,7,opt,name=nodeRegionId,proto3" json:"nodeRegionId,omitempty"`
|
2020-09-13 19:27:47 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *CreateNodeRequest) Reset() {
|
|
|
|
|
|
*x = CreateNodeRequest{}
|
|
|
|
|
|
if protoimpl.UnsafeEnabled {
|
|
|
|
|
|
mi := &file_service_node_proto_msgTypes[0]
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *CreateNodeRequest) String() string {
|
|
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (*CreateNodeRequest) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *CreateNodeRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
mi := &file_service_node_proto_msgTypes[0]
|
|
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use CreateNodeRequest.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*CreateNodeRequest) Descriptor() ([]byte, []int) {
|
|
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{0}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *CreateNodeRequest) GetName() string {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.Name
|
|
|
|
|
|
}
|
|
|
|
|
|
return ""
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2020-12-17 15:51:09 +08:00
|
|
|
|
func (x *CreateNodeRequest) GetNodeClusterId() int64 {
|
2020-09-13 19:27:47 +08:00
|
|
|
|
if x != nil {
|
2020-12-17 15:51:09 +08:00
|
|
|
|
return x.NodeClusterId
|
2020-09-13 19:27:47 +08:00
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
func (x *CreateNodeRequest) GetNodeLogin() *NodeLogin {
|
2020-09-13 19:27:47 +08:00
|
|
|
|
if x != nil {
|
2021-05-25 17:08:52 +08:00
|
|
|
|
return x.NodeLogin
|
2020-09-13 19:27:47 +08:00
|
|
|
|
}
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
func (x *CreateNodeRequest) GetNodeGroupId() int64 {
|
2020-10-28 20:00:33 +08:00
|
|
|
|
if x != nil {
|
2021-05-25 17:08:52 +08:00
|
|
|
|
return x.NodeGroupId
|
2020-10-28 20:00:33 +08:00
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2023-08-06 23:36:50 +08:00
|
|
|
|
// Deprecated: Marked as deprecated in service_node.proto.
|
2020-11-15 21:17:37 +08:00
|
|
|
|
func (x *CreateNodeRequest) GetDnsDomainId() int64 {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.DnsDomainId
|
|
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2020-11-16 13:03:58 +08:00
|
|
|
|
func (x *CreateNodeRequest) GetDnsRoutes() []string {
|
2020-11-15 21:17:37 +08:00
|
|
|
|
if x != nil {
|
2020-11-16 13:03:58 +08:00
|
|
|
|
return x.DnsRoutes
|
2020-11-15 21:17:37 +08:00
|
|
|
|
}
|
2020-11-16 13:03:58 +08:00
|
|
|
|
return nil
|
2020-11-15 21:17:37 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
func (x *CreateNodeRequest) GetNodeRegionId() int64 {
|
2020-12-10 15:03:08 +08:00
|
|
|
|
if x != nil {
|
2021-05-25 17:08:52 +08:00
|
|
|
|
return x.NodeRegionId
|
2020-12-10 15:03:08 +08:00
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2020-09-13 19:27:47 +08:00
|
|
|
|
type CreateNodeResponse struct {
|
|
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
|
|
|
|
NodeId int64 `protobuf:"varint,1,opt,name=nodeId,proto3" json:"nodeId,omitempty"`
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *CreateNodeResponse) Reset() {
|
|
|
|
|
|
*x = CreateNodeResponse{}
|
|
|
|
|
|
if protoimpl.UnsafeEnabled {
|
|
|
|
|
|
mi := &file_service_node_proto_msgTypes[1]
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *CreateNodeResponse) String() string {
|
|
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (*CreateNodeResponse) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *CreateNodeResponse) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
mi := &file_service_node_proto_msgTypes[1]
|
|
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use CreateNodeResponse.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*CreateNodeResponse) Descriptor() ([]byte, []int) {
|
|
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{1}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *CreateNodeResponse) GetNodeId() int64 {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.NodeId
|
|
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2020-10-17 11:14:44 +08:00
|
|
|
|
// 注册集群节点
|
|
|
|
|
|
type RegisterClusterNodeRequest struct {
|
|
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
|
|
|
|
Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *RegisterClusterNodeRequest) Reset() {
|
|
|
|
|
|
*x = RegisterClusterNodeRequest{}
|
|
|
|
|
|
if protoimpl.UnsafeEnabled {
|
|
|
|
|
|
mi := &file_service_node_proto_msgTypes[2]
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *RegisterClusterNodeRequest) String() string {
|
|
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (*RegisterClusterNodeRequest) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *RegisterClusterNodeRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
mi := &file_service_node_proto_msgTypes[2]
|
|
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use RegisterClusterNodeRequest.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*RegisterClusterNodeRequest) Descriptor() ([]byte, []int) {
|
|
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{2}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *RegisterClusterNodeRequest) GetName() string {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.Name
|
|
|
|
|
|
}
|
|
|
|
|
|
return ""
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
type RegisterClusterNodeResponse struct {
|
|
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
|
|
|
|
UniqueId string `protobuf:"bytes,1,opt,name=uniqueId,proto3" json:"uniqueId,omitempty"`
|
|
|
|
|
|
Secret string `protobuf:"bytes,2,opt,name=secret,proto3" json:"secret,omitempty"`
|
|
|
|
|
|
Endpoints []string `protobuf:"bytes,3,rep,name=endpoints,proto3" json:"endpoints,omitempty"`
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *RegisterClusterNodeResponse) Reset() {
|
|
|
|
|
|
*x = RegisterClusterNodeResponse{}
|
|
|
|
|
|
if protoimpl.UnsafeEnabled {
|
|
|
|
|
|
mi := &file_service_node_proto_msgTypes[3]
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *RegisterClusterNodeResponse) String() string {
|
|
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (*RegisterClusterNodeResponse) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *RegisterClusterNodeResponse) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
mi := &file_service_node_proto_msgTypes[3]
|
|
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use RegisterClusterNodeResponse.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*RegisterClusterNodeResponse) Descriptor() ([]byte, []int) {
|
|
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{3}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *RegisterClusterNodeResponse) GetUniqueId() string {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.UniqueId
|
|
|
|
|
|
}
|
|
|
|
|
|
return ""
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *RegisterClusterNodeResponse) GetSecret() string {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.Secret
|
|
|
|
|
|
}
|
|
|
|
|
|
return ""
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *RegisterClusterNodeResponse) GetEndpoints() []string {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.Endpoints
|
|
|
|
|
|
}
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-26 14:40:21 +08:00
|
|
|
|
// 所有可用的节点数量
|
2020-09-13 19:27:47 +08:00
|
|
|
|
type CountAllEnabledNodesRequest struct {
|
|
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *CountAllEnabledNodesRequest) Reset() {
|
|
|
|
|
|
*x = CountAllEnabledNodesRequest{}
|
|
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2020-10-17 11:14:44 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[4]
|
2020-09-13 19:27:47 +08:00
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *CountAllEnabledNodesRequest) String() string {
|
|
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (*CountAllEnabledNodesRequest) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *CountAllEnabledNodesRequest) ProtoReflect() protoreflect.Message {
|
2020-10-17 11:14:44 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[4]
|
2020-09-13 19:27:47 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use CountAllEnabledNodesRequest.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*CountAllEnabledNodesRequest) Descriptor() ([]byte, []int) {
|
2020-10-17 11:14:44 +08:00
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{4}
|
2020-09-13 19:27:47 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 列出单页节点
|
|
|
|
|
|
type ListEnabledNodesMatchRequest struct {
|
|
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
2023-03-15 17:58:01 +08:00
|
|
|
|
Offset int64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"` // 读取位置
|
|
|
|
|
|
Size int64 `protobuf:"varint,2,opt,name=size,proto3" json:"size,omitempty"` // 读取数量
|
|
|
|
|
|
NodeClusterId int64 `protobuf:"varint,3,opt,name=nodeClusterId,proto3" json:"nodeClusterId,omitempty"` // 集群ID
|
|
|
|
|
|
InstallState int32 `protobuf:"varint,4,opt,name=installState,proto3" json:"installState,omitempty"` // 安装状态
|
|
|
|
|
|
ActiveState int32 `protobuf:"varint,5,opt,name=activeState,proto3" json:"activeState,omitempty"` // 在线状态
|
|
|
|
|
|
Keyword string `protobuf:"bytes,6,opt,name=keyword,proto3" json:"keyword,omitempty"` // 关键词
|
|
|
|
|
|
NodeGroupId int64 `protobuf:"varint,7,opt,name=nodeGroupId,proto3" json:"nodeGroupId,omitempty"` // 节点分组ID
|
|
|
|
|
|
NodeRegionId int64 `protobuf:"varint,8,opt,name=nodeRegionId,proto3" json:"nodeRegionId,omitempty"` // 节点区域ID
|
|
|
|
|
|
Level int32 `protobuf:"varint,9,opt,name=level,proto3" json:"level,omitempty"` // 节点级别,目前只有1(L1)和2(L2)
|
|
|
|
|
|
CpuAsc bool `protobuf:"varint,20,opt,name=cpuAsc,proto3" json:"cpuAsc,omitempty"`
|
|
|
|
|
|
CpuDesc bool `protobuf:"varint,21,opt,name=cpuDesc,proto3" json:"cpuDesc,omitempty"`
|
|
|
|
|
|
MemoryAsc bool `protobuf:"varint,22,opt,name=memoryAsc,proto3" json:"memoryAsc,omitempty"`
|
|
|
|
|
|
MemoryDesc bool `protobuf:"varint,23,opt,name=memoryDesc,proto3" json:"memoryDesc,omitempty"`
|
|
|
|
|
|
TrafficInAsc bool `protobuf:"varint,24,opt,name=trafficInAsc,proto3" json:"trafficInAsc,omitempty"`
|
|
|
|
|
|
TrafficInDesc bool `protobuf:"varint,25,opt,name=trafficInDesc,proto3" json:"trafficInDesc,omitempty"`
|
|
|
|
|
|
TrafficOutAsc bool `protobuf:"varint,26,opt,name=trafficOutAsc,proto3" json:"trafficOutAsc,omitempty"`
|
|
|
|
|
|
TrafficOutDesc bool `protobuf:"varint,27,opt,name=trafficOutDesc,proto3" json:"trafficOutDesc,omitempty"`
|
|
|
|
|
|
LoadAsc bool `protobuf:"varint,28,opt,name=loadAsc,proto3" json:"loadAsc,omitempty"`
|
|
|
|
|
|
LoadDesc bool `protobuf:"varint,29,opt,name=loadDesc,proto3" json:"loadDesc,omitempty"`
|
|
|
|
|
|
ConnectionsAsc bool `protobuf:"varint,30,opt,name=connectionsAsc,proto3" json:"connectionsAsc,omitempty"`
|
|
|
|
|
|
ConnectionsDesc bool `protobuf:"varint,31,opt,name=connectionsDesc,proto3" json:"connectionsDesc,omitempty"`
|
2020-09-13 19:27:47 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *ListEnabledNodesMatchRequest) Reset() {
|
|
|
|
|
|
*x = ListEnabledNodesMatchRequest{}
|
|
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2020-11-12 14:41:23 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[5]
|
2020-09-13 19:27:47 +08:00
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *ListEnabledNodesMatchRequest) String() string {
|
|
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (*ListEnabledNodesMatchRequest) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *ListEnabledNodesMatchRequest) ProtoReflect() protoreflect.Message {
|
2020-11-12 14:41:23 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[5]
|
2020-09-13 19:27:47 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use ListEnabledNodesMatchRequest.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*ListEnabledNodesMatchRequest) Descriptor() ([]byte, []int) {
|
2020-11-12 14:41:23 +08:00
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{5}
|
2020-09-13 19:27:47 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *ListEnabledNodesMatchRequest) GetOffset() int64 {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.Offset
|
|
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *ListEnabledNodesMatchRequest) GetSize() int64 {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.Size
|
|
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2020-12-17 15:51:09 +08:00
|
|
|
|
func (x *ListEnabledNodesMatchRequest) GetNodeClusterId() int64 {
|
2020-09-13 19:27:47 +08:00
|
|
|
|
if x != nil {
|
2020-12-17 15:51:09 +08:00
|
|
|
|
return x.NodeClusterId
|
2020-09-13 19:27:47 +08:00
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *ListEnabledNodesMatchRequest) GetInstallState() int32 {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.InstallState
|
|
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2020-09-26 08:07:24 +08:00
|
|
|
|
func (x *ListEnabledNodesMatchRequest) GetActiveState() int32 {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.ActiveState
|
|
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2020-10-28 18:21:26 +08:00
|
|
|
|
func (x *ListEnabledNodesMatchRequest) GetKeyword() string {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.Keyword
|
|
|
|
|
|
}
|
|
|
|
|
|
return ""
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
func (x *ListEnabledNodesMatchRequest) GetNodeGroupId() int64 {
|
2020-10-28 18:21:26 +08:00
|
|
|
|
if x != nil {
|
2021-05-25 17:08:52 +08:00
|
|
|
|
return x.NodeGroupId
|
2020-10-28 18:21:26 +08:00
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
func (x *ListEnabledNodesMatchRequest) GetNodeRegionId() int64 {
|
2020-12-10 16:11:31 +08:00
|
|
|
|
if x != nil {
|
2021-05-25 17:08:52 +08:00
|
|
|
|
return x.NodeRegionId
|
2020-12-10 16:11:31 +08:00
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2022-04-04 16:42:11 +08:00
|
|
|
|
func (x *ListEnabledNodesMatchRequest) GetLevel() int32 {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.Level
|
|
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-07-07 19:55:52 +08:00
|
|
|
|
func (x *ListEnabledNodesMatchRequest) GetCpuAsc() bool {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.CpuAsc
|
|
|
|
|
|
}
|
|
|
|
|
|
return false
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *ListEnabledNodesMatchRequest) GetCpuDesc() bool {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.CpuDesc
|
|
|
|
|
|
}
|
|
|
|
|
|
return false
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *ListEnabledNodesMatchRequest) GetMemoryAsc() bool {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.MemoryAsc
|
|
|
|
|
|
}
|
|
|
|
|
|
return false
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *ListEnabledNodesMatchRequest) GetMemoryDesc() bool {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.MemoryDesc
|
|
|
|
|
|
}
|
|
|
|
|
|
return false
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *ListEnabledNodesMatchRequest) GetTrafficInAsc() bool {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.TrafficInAsc
|
|
|
|
|
|
}
|
|
|
|
|
|
return false
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *ListEnabledNodesMatchRequest) GetTrafficInDesc() bool {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.TrafficInDesc
|
|
|
|
|
|
}
|
|
|
|
|
|
return false
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *ListEnabledNodesMatchRequest) GetTrafficOutAsc() bool {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.TrafficOutAsc
|
|
|
|
|
|
}
|
|
|
|
|
|
return false
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *ListEnabledNodesMatchRequest) GetTrafficOutDesc() bool {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.TrafficOutDesc
|
|
|
|
|
|
}
|
|
|
|
|
|
return false
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2022-04-07 18:31:51 +08:00
|
|
|
|
func (x *ListEnabledNodesMatchRequest) GetLoadAsc() bool {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.LoadAsc
|
|
|
|
|
|
}
|
|
|
|
|
|
return false
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *ListEnabledNodesMatchRequest) GetLoadDesc() bool {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.LoadDesc
|
|
|
|
|
|
}
|
|
|
|
|
|
return false
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2023-03-15 17:58:01 +08:00
|
|
|
|
func (x *ListEnabledNodesMatchRequest) GetConnectionsAsc() bool {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.ConnectionsAsc
|
|
|
|
|
|
}
|
|
|
|
|
|
return false
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *ListEnabledNodesMatchRequest) GetConnectionsDesc() bool {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.ConnectionsDesc
|
|
|
|
|
|
}
|
|
|
|
|
|
return false
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2020-09-13 19:27:47 +08:00
|
|
|
|
type ListEnabledNodesMatchResponse struct {
|
|
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
|
|
|
|
Nodes []*Node `protobuf:"bytes,1,rep,name=nodes,proto3" json:"nodes,omitempty"`
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *ListEnabledNodesMatchResponse) Reset() {
|
|
|
|
|
|
*x = ListEnabledNodesMatchResponse{}
|
|
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2020-11-12 14:41:23 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[6]
|
2020-09-13 19:27:47 +08:00
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *ListEnabledNodesMatchResponse) String() string {
|
|
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (*ListEnabledNodesMatchResponse) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *ListEnabledNodesMatchResponse) ProtoReflect() protoreflect.Message {
|
2020-11-12 14:41:23 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[6]
|
2020-09-13 19:27:47 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use ListEnabledNodesMatchResponse.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*ListEnabledNodesMatchResponse) Descriptor() ([]byte, []int) {
|
2020-11-12 14:41:23 +08:00
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{6}
|
2020-09-13 19:27:47 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *ListEnabledNodesMatchResponse) GetNodes() []*Node {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.Nodes
|
|
|
|
|
|
}
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2020-10-04 16:10:19 +08:00
|
|
|
|
// 根据集群查找所有节点
|
2021-05-25 17:08:52 +08:00
|
|
|
|
type FindAllEnabledNodesWithNodeClusterIdRequest struct {
|
2020-10-04 16:10:19 +08:00
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
2022-05-23 19:56:11 +08:00
|
|
|
|
NodeClusterId int64 `protobuf:"varint,1,opt,name=nodeClusterId,proto3" json:"nodeClusterId,omitempty"` // 集群ID
|
|
|
|
|
|
IncludeSecondary bool `protobuf:"varint,2,opt,name=includeSecondary,proto3" json:"includeSecondary,omitempty"` // 是否检查节点的从集群,如果为false,则只检查主集群ID
|
2020-10-04 16:10:19 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
func (x *FindAllEnabledNodesWithNodeClusterIdRequest) Reset() {
|
|
|
|
|
|
*x = FindAllEnabledNodesWithNodeClusterIdRequest{}
|
2020-10-04 16:10:19 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2020-11-12 14:41:23 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[7]
|
2020-10-04 16:10:19 +08:00
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
func (x *FindAllEnabledNodesWithNodeClusterIdRequest) String() string {
|
2020-10-04 16:10:19 +08:00
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
func (*FindAllEnabledNodesWithNodeClusterIdRequest) ProtoMessage() {}
|
2020-10-04 16:10:19 +08:00
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
func (x *FindAllEnabledNodesWithNodeClusterIdRequest) ProtoReflect() protoreflect.Message {
|
2020-11-12 14:41:23 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[7]
|
2020-10-04 16:10:19 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
// Deprecated: Use FindAllEnabledNodesWithNodeClusterIdRequest.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*FindAllEnabledNodesWithNodeClusterIdRequest) Descriptor() ([]byte, []int) {
|
2020-11-12 14:41:23 +08:00
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{7}
|
2020-10-04 16:10:19 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
func (x *FindAllEnabledNodesWithNodeClusterIdRequest) GetNodeClusterId() int64 {
|
2020-10-04 16:10:19 +08:00
|
|
|
|
if x != nil {
|
2020-12-17 15:51:09 +08:00
|
|
|
|
return x.NodeClusterId
|
2020-10-04 16:10:19 +08:00
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2022-05-23 19:56:11 +08:00
|
|
|
|
func (x *FindAllEnabledNodesWithNodeClusterIdRequest) GetIncludeSecondary() bool {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.IncludeSecondary
|
|
|
|
|
|
}
|
|
|
|
|
|
return false
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
type FindAllEnabledNodesWithNodeClusterIdResponse struct {
|
2020-10-04 16:10:19 +08:00
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
|
|
|
|
Nodes []*Node `protobuf:"bytes,1,rep,name=nodes,proto3" json:"nodes,omitempty"`
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
func (x *FindAllEnabledNodesWithNodeClusterIdResponse) Reset() {
|
|
|
|
|
|
*x = FindAllEnabledNodesWithNodeClusterIdResponse{}
|
2020-10-04 16:10:19 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2020-11-12 14:41:23 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[8]
|
2020-10-04 16:10:19 +08:00
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
func (x *FindAllEnabledNodesWithNodeClusterIdResponse) String() string {
|
2020-10-04 16:10:19 +08:00
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
func (*FindAllEnabledNodesWithNodeClusterIdResponse) ProtoMessage() {}
|
2020-10-04 16:10:19 +08:00
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
func (x *FindAllEnabledNodesWithNodeClusterIdResponse) ProtoReflect() protoreflect.Message {
|
2020-11-12 14:41:23 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[8]
|
2020-10-04 16:10:19 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
// Deprecated: Use FindAllEnabledNodesWithNodeClusterIdResponse.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*FindAllEnabledNodesWithNodeClusterIdResponse) Descriptor() ([]byte, []int) {
|
2020-11-12 14:41:23 +08:00
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{8}
|
2020-10-04 16:10:19 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
func (x *FindAllEnabledNodesWithNodeClusterIdResponse) GetNodes() []*Node {
|
2020-10-04 16:10:19 +08:00
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.Nodes
|
|
|
|
|
|
}
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2020-11-15 21:17:37 +08:00
|
|
|
|
// 删除节点
|
|
|
|
|
|
type DeleteNodeRequest struct {
|
2020-09-13 19:27:47 +08:00
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
|
|
|
|
NodeId int64 `protobuf:"varint,1,opt,name=nodeId,proto3" json:"nodeId,omitempty"`
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2020-11-15 21:17:37 +08:00
|
|
|
|
func (x *DeleteNodeRequest) Reset() {
|
|
|
|
|
|
*x = DeleteNodeRequest{}
|
2020-09-13 19:27:47 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2020-11-12 14:41:23 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[9]
|
2020-09-13 19:27:47 +08:00
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2020-11-15 21:17:37 +08:00
|
|
|
|
func (x *DeleteNodeRequest) String() string {
|
2020-09-13 19:27:47 +08:00
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2020-11-15 21:17:37 +08:00
|
|
|
|
func (*DeleteNodeRequest) ProtoMessage() {}
|
2020-09-13 19:27:47 +08:00
|
|
|
|
|
2020-11-15 21:17:37 +08:00
|
|
|
|
func (x *DeleteNodeRequest) ProtoReflect() protoreflect.Message {
|
2020-11-12 14:41:23 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[9]
|
2020-09-13 19:27:47 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2020-11-15 21:17:37 +08:00
|
|
|
|
// Deprecated: Use DeleteNodeRequest.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*DeleteNodeRequest) Descriptor() ([]byte, []int) {
|
2020-11-12 14:41:23 +08:00
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{9}
|
2020-09-13 19:27:47 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2020-11-15 21:17:37 +08:00
|
|
|
|
func (x *DeleteNodeRequest) GetNodeId() int64 {
|
2020-09-13 19:27:47 +08:00
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.NodeId
|
|
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-07-31 22:23:16 +08:00
|
|
|
|
// 从集群中删除节点
|
|
|
|
|
|
type DeleteNodeFromNodeClusterRequest struct {
|
|
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
|
|
|
|
NodeId int64 `protobuf:"varint,1,opt,name=nodeId,proto3" json:"nodeId,omitempty"`
|
|
|
|
|
|
NodeClusterId int64 `protobuf:"varint,2,opt,name=nodeClusterId,proto3" json:"nodeClusterId,omitempty"`
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *DeleteNodeFromNodeClusterRequest) Reset() {
|
|
|
|
|
|
*x = DeleteNodeFromNodeClusterRequest{}
|
|
|
|
|
|
if protoimpl.UnsafeEnabled {
|
|
|
|
|
|
mi := &file_service_node_proto_msgTypes[10]
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *DeleteNodeFromNodeClusterRequest) String() string {
|
|
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (*DeleteNodeFromNodeClusterRequest) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *DeleteNodeFromNodeClusterRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
mi := &file_service_node_proto_msgTypes[10]
|
|
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use DeleteNodeFromNodeClusterRequest.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*DeleteNodeFromNodeClusterRequest) Descriptor() ([]byte, []int) {
|
|
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{10}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *DeleteNodeFromNodeClusterRequest) GetNodeId() int64 {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.NodeId
|
|
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *DeleteNodeFromNodeClusterRequest) GetNodeClusterId() int64 {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.NodeClusterId
|
|
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2020-09-13 19:27:47 +08:00
|
|
|
|
// 修改节点
|
|
|
|
|
|
type UpdateNodeRequest struct {
|
|
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
2022-08-25 20:37:15 +08:00
|
|
|
|
NodeId int64 `protobuf:"varint,1,opt,name=nodeId,proto3" json:"nodeId,omitempty"`
|
|
|
|
|
|
Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
|
|
|
|
|
|
NodeClusterId int64 `protobuf:"varint,3,opt,name=nodeClusterId,proto3" json:"nodeClusterId,omitempty"`
|
|
|
|
|
|
SecondaryNodeClusterIds []int64 `protobuf:"varint,13,rep,packed,name=secondaryNodeClusterIds,proto3" json:"secondaryNodeClusterIds,omitempty"`
|
|
|
|
|
|
IsOn bool `protobuf:"varint,6,opt,name=isOn,proto3" json:"isOn,omitempty"`
|
|
|
|
|
|
NodeGroupId int64 `protobuf:"varint,7,opt,name=nodeGroupId,proto3" json:"nodeGroupId,omitempty"`
|
|
|
|
|
|
NodeRegionId int64 `protobuf:"varint,10,opt,name=nodeRegionId,proto3" json:"nodeRegionId,omitempty"`
|
|
|
|
|
|
Level int32 `protobuf:"varint,14,opt,name=level,proto3" json:"level,omitempty"`
|
2022-10-26 10:42:02 +08:00
|
|
|
|
LnAddrs []string `protobuf:"bytes,15,rep,name=lnAddrs,proto3" json:"lnAddrs,omitempty"` // Ln节点访问地址
|
|
|
|
|
|
EnableIPLists bool `protobuf:"varint,16,opt,name=enableIPLists,proto3" json:"enableIPLists,omitempty"` // 是否启用IP名单
|
2020-09-13 19:27:47 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UpdateNodeRequest) Reset() {
|
|
|
|
|
|
*x = UpdateNodeRequest{}
|
|
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2021-07-31 22:23:16 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[11]
|
2020-09-13 19:27:47 +08:00
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UpdateNodeRequest) String() string {
|
|
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (*UpdateNodeRequest) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UpdateNodeRequest) ProtoReflect() protoreflect.Message {
|
2021-07-31 22:23:16 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[11]
|
2020-09-13 19:27:47 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use UpdateNodeRequest.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*UpdateNodeRequest) Descriptor() ([]byte, []int) {
|
2021-07-31 22:23:16 +08:00
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{11}
|
2020-09-13 19:27:47 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UpdateNodeRequest) GetNodeId() int64 {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.NodeId
|
|
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UpdateNodeRequest) GetName() string {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.Name
|
|
|
|
|
|
}
|
|
|
|
|
|
return ""
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2020-12-17 15:51:09 +08:00
|
|
|
|
func (x *UpdateNodeRequest) GetNodeClusterId() int64 {
|
2020-09-13 19:27:47 +08:00
|
|
|
|
if x != nil {
|
2020-12-17 15:51:09 +08:00
|
|
|
|
return x.NodeClusterId
|
2020-09-13 19:27:47 +08:00
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-07-31 22:23:16 +08:00
|
|
|
|
func (x *UpdateNodeRequest) GetSecondaryNodeClusterIds() []int64 {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.SecondaryNodeClusterIds
|
|
|
|
|
|
}
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2020-10-10 12:31:40 +08:00
|
|
|
|
func (x *UpdateNodeRequest) GetIsOn() bool {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.IsOn
|
|
|
|
|
|
}
|
|
|
|
|
|
return false
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
func (x *UpdateNodeRequest) GetNodeGroupId() int64 {
|
2020-10-28 20:00:33 +08:00
|
|
|
|
if x != nil {
|
2021-05-25 17:08:52 +08:00
|
|
|
|
return x.NodeGroupId
|
2020-10-28 20:00:33 +08:00
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
func (x *UpdateNodeRequest) GetNodeRegionId() int64 {
|
2020-12-10 15:03:08 +08:00
|
|
|
|
if x != nil {
|
2021-05-25 17:08:52 +08:00
|
|
|
|
return x.NodeRegionId
|
2020-12-10 15:03:08 +08:00
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2022-04-04 16:42:11 +08:00
|
|
|
|
func (x *UpdateNodeRequest) GetLevel() int32 {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.Level
|
|
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2022-08-25 20:37:15 +08:00
|
|
|
|
func (x *UpdateNodeRequest) GetLnAddrs() []string {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.LnAddrs
|
|
|
|
|
|
}
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2022-10-26 10:42:02 +08:00
|
|
|
|
func (x *UpdateNodeRequest) GetEnableIPLists() bool {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.EnableIPLists
|
|
|
|
|
|
}
|
|
|
|
|
|
return false
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-26 14:40:21 +08:00
|
|
|
|
// 获取单个节点信息
|
2020-09-13 19:27:47 +08:00
|
|
|
|
type FindEnabledNodeRequest struct {
|
|
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
|
|
|
|
NodeId int64 `protobuf:"varint,1,opt,name=nodeId,proto3" json:"nodeId,omitempty"`
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindEnabledNodeRequest) Reset() {
|
|
|
|
|
|
*x = FindEnabledNodeRequest{}
|
|
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2021-07-31 22:23:16 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[12]
|
2020-09-13 19:27:47 +08:00
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindEnabledNodeRequest) String() string {
|
|
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (*FindEnabledNodeRequest) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindEnabledNodeRequest) ProtoReflect() protoreflect.Message {
|
2021-07-31 22:23:16 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[12]
|
2020-09-13 19:27:47 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use FindEnabledNodeRequest.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*FindEnabledNodeRequest) Descriptor() ([]byte, []int) {
|
2021-07-31 22:23:16 +08:00
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{12}
|
2020-09-13 19:27:47 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindEnabledNodeRequest) GetNodeId() int64 {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.NodeId
|
|
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
type FindEnabledNodeResponse struct {
|
|
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
|
|
|
|
Node *Node `protobuf:"bytes,1,opt,name=node,proto3" json:"node,omitempty"`
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindEnabledNodeResponse) Reset() {
|
|
|
|
|
|
*x = FindEnabledNodeResponse{}
|
|
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2021-07-31 22:23:16 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[13]
|
2020-09-13 19:27:47 +08:00
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindEnabledNodeResponse) String() string {
|
|
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (*FindEnabledNodeResponse) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindEnabledNodeResponse) ProtoReflect() protoreflect.Message {
|
2021-07-31 22:23:16 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[13]
|
2020-09-13 19:27:47 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use FindEnabledNodeResponse.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*FindEnabledNodeResponse) Descriptor() ([]byte, []int) {
|
2021-07-31 22:23:16 +08:00
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{13}
|
2020-09-13 19:27:47 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindEnabledNodeResponse) GetNode() *Node {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.Node
|
|
|
|
|
|
}
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-08-31 17:24:41 +08:00
|
|
|
|
// 获取单个节点基本信息
|
|
|
|
|
|
type FindEnabledBasicNodeRequest struct {
|
|
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
|
|
|
|
NodeId int64 `protobuf:"varint,1,opt,name=nodeId,proto3" json:"nodeId,omitempty"`
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindEnabledBasicNodeRequest) Reset() {
|
|
|
|
|
|
*x = FindEnabledBasicNodeRequest{}
|
|
|
|
|
|
if protoimpl.UnsafeEnabled {
|
|
|
|
|
|
mi := &file_service_node_proto_msgTypes[14]
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindEnabledBasicNodeRequest) String() string {
|
|
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (*FindEnabledBasicNodeRequest) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindEnabledBasicNodeRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
mi := &file_service_node_proto_msgTypes[14]
|
|
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use FindEnabledBasicNodeRequest.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*FindEnabledBasicNodeRequest) Descriptor() ([]byte, []int) {
|
|
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{14}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindEnabledBasicNodeRequest) GetNodeId() int64 {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.NodeId
|
|
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
type FindEnabledBasicNodeResponse struct {
|
|
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
|
|
|
|
Node *BasicNode `protobuf:"bytes,1,opt,name=node,proto3" json:"node,omitempty"`
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindEnabledBasicNodeResponse) Reset() {
|
|
|
|
|
|
*x = FindEnabledBasicNodeResponse{}
|
|
|
|
|
|
if protoimpl.UnsafeEnabled {
|
|
|
|
|
|
mi := &file_service_node_proto_msgTypes[15]
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindEnabledBasicNodeResponse) String() string {
|
|
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (*FindEnabledBasicNodeResponse) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindEnabledBasicNodeResponse) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
mi := &file_service_node_proto_msgTypes[15]
|
|
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use FindEnabledBasicNodeResponse.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*FindEnabledBasicNodeResponse) Descriptor() ([]byte, []int) {
|
|
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{15}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindEnabledBasicNodeResponse) GetNode() *BasicNode {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.Node
|
|
|
|
|
|
}
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2020-09-13 19:27:47 +08:00
|
|
|
|
// 组合单个节点配置
|
2020-11-02 22:14:28 +08:00
|
|
|
|
type FindCurrentNodeConfigRequest struct {
|
2020-09-13 19:27:47 +08:00
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
2020-12-02 14:26:17 +08:00
|
|
|
|
|
|
|
|
|
|
// 由于登录信息中已经包含了节点信息,所以这里不需要nodeId
|
2021-11-11 14:17:45 +08:00
|
|
|
|
Version int64 `protobuf:"varint,1,opt,name=version,proto3" json:"version,omitempty"`
|
|
|
|
|
|
Compress bool `protobuf:"varint,2,opt,name=compress,proto3" json:"compress,omitempty"` // 是否压缩
|
|
|
|
|
|
NodeTaskVersion int64 `protobuf:"varint,3,opt,name=nodeTaskVersion,proto3" json:"nodeTaskVersion,omitempty"` // 通知任务版本
|
2023-03-18 22:15:13 +08:00
|
|
|
|
UseDataMap bool `protobuf:"varint,4,opt,name=useDataMap,proto3" json:"useDataMap,omitempty"` // 是否使用公共的数据集
|
2020-09-13 19:27:47 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2020-11-02 22:14:28 +08:00
|
|
|
|
func (x *FindCurrentNodeConfigRequest) Reset() {
|
|
|
|
|
|
*x = FindCurrentNodeConfigRequest{}
|
2020-09-13 19:27:47 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[16]
|
2020-09-13 19:27:47 +08:00
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2020-11-02 22:14:28 +08:00
|
|
|
|
func (x *FindCurrentNodeConfigRequest) String() string {
|
2020-09-13 19:27:47 +08:00
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2020-11-02 22:14:28 +08:00
|
|
|
|
func (*FindCurrentNodeConfigRequest) ProtoMessage() {}
|
2020-09-13 19:27:47 +08:00
|
|
|
|
|
2020-11-02 22:14:28 +08:00
|
|
|
|
func (x *FindCurrentNodeConfigRequest) ProtoReflect() protoreflect.Message {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[16]
|
2020-09-13 19:27:47 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2020-11-02 22:14:28 +08:00
|
|
|
|
// Deprecated: Use FindCurrentNodeConfigRequest.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*FindCurrentNodeConfigRequest) Descriptor() ([]byte, []int) {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{16}
|
2020-09-13 19:27:47 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2020-12-02 14:26:17 +08:00
|
|
|
|
func (x *FindCurrentNodeConfigRequest) GetVersion() int64 {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.Version
|
|
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-11-11 14:17:45 +08:00
|
|
|
|
func (x *FindCurrentNodeConfigRequest) GetCompress() bool {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.Compress
|
|
|
|
|
|
}
|
|
|
|
|
|
return false
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindCurrentNodeConfigRequest) GetNodeTaskVersion() int64 {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.NodeTaskVersion
|
|
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2023-03-18 22:15:13 +08:00
|
|
|
|
func (x *FindCurrentNodeConfigRequest) GetUseDataMap() bool {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.UseDataMap
|
|
|
|
|
|
}
|
|
|
|
|
|
return false
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2020-11-02 22:14:28 +08:00
|
|
|
|
type FindCurrentNodeConfigResponse struct {
|
2020-09-13 19:27:47 +08:00
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
2021-11-11 14:17:45 +08:00
|
|
|
|
NodeJSON []byte `protobuf:"bytes,1,opt,name=nodeJSON,proto3" json:"nodeJSON,omitempty"`
|
|
|
|
|
|
IsChanged bool `protobuf:"varint,2,opt,name=isChanged,proto3" json:"isChanged,omitempty"`
|
|
|
|
|
|
IsCompressed bool `protobuf:"varint,3,opt,name=isCompressed,proto3" json:"isCompressed,omitempty"`
|
|
|
|
|
|
DataSize int64 `protobuf:"varint,4,opt,name=dataSize,proto3" json:"dataSize,omitempty"`
|
2022-05-18 21:02:58 +08:00
|
|
|
|
Timestamp int64 `protobuf:"varint,5,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
|
2020-09-13 19:27:47 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2020-11-02 22:14:28 +08:00
|
|
|
|
func (x *FindCurrentNodeConfigResponse) Reset() {
|
|
|
|
|
|
*x = FindCurrentNodeConfigResponse{}
|
2020-09-13 19:27:47 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[17]
|
2020-09-13 19:27:47 +08:00
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2020-11-02 22:14:28 +08:00
|
|
|
|
func (x *FindCurrentNodeConfigResponse) String() string {
|
2020-09-13 19:27:47 +08:00
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2020-11-02 22:14:28 +08:00
|
|
|
|
func (*FindCurrentNodeConfigResponse) ProtoMessage() {}
|
2020-09-13 19:27:47 +08:00
|
|
|
|
|
2020-11-02 22:14:28 +08:00
|
|
|
|
func (x *FindCurrentNodeConfigResponse) ProtoReflect() protoreflect.Message {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[17]
|
2020-09-13 19:27:47 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2020-11-02 22:14:28 +08:00
|
|
|
|
// Deprecated: Use FindCurrentNodeConfigResponse.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*FindCurrentNodeConfigResponse) Descriptor() ([]byte, []int) {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{17}
|
2020-09-13 19:27:47 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2020-11-02 22:14:28 +08:00
|
|
|
|
func (x *FindCurrentNodeConfigResponse) GetNodeJSON() []byte {
|
2020-09-13 19:27:47 +08:00
|
|
|
|
if x != nil {
|
2020-09-21 19:52:10 +08:00
|
|
|
|
return x.NodeJSON
|
2020-09-13 19:27:47 +08:00
|
|
|
|
}
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2020-12-02 14:26:17 +08:00
|
|
|
|
func (x *FindCurrentNodeConfigResponse) GetIsChanged() bool {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.IsChanged
|
|
|
|
|
|
}
|
|
|
|
|
|
return false
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-11-11 14:17:45 +08:00
|
|
|
|
func (x *FindCurrentNodeConfigResponse) GetIsCompressed() bool {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.IsCompressed
|
|
|
|
|
|
}
|
|
|
|
|
|
return false
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindCurrentNodeConfigResponse) GetDataSize() int64 {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.DataSize
|
|
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2022-05-18 21:02:58 +08:00
|
|
|
|
func (x *FindCurrentNodeConfigResponse) GetTimestamp() int64 {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.Timestamp
|
|
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2020-09-13 19:27:47 +08:00
|
|
|
|
// 节点stream
|
2020-10-04 16:10:19 +08:00
|
|
|
|
type NodeStreamMessage struct {
|
2020-09-13 19:27:47 +08:00
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
2020-10-04 16:10:19 +08:00
|
|
|
|
|
|
|
|
|
|
NodeId int64 `protobuf:"varint,1,opt,name=nodeId,proto3" json:"nodeId,omitempty"`
|
|
|
|
|
|
RequestId int64 `protobuf:"varint,2,opt,name=requestId,proto3" json:"requestId,omitempty"`
|
|
|
|
|
|
TimeoutSeconds int32 `protobuf:"varint,3,opt,name=timeoutSeconds,proto3" json:"timeoutSeconds,omitempty"`
|
|
|
|
|
|
Code string `protobuf:"bytes,4,opt,name=code,proto3" json:"code,omitempty"`
|
|
|
|
|
|
DataJSON []byte `protobuf:"bytes,5,opt,name=dataJSON,proto3" json:"dataJSON,omitempty"`
|
|
|
|
|
|
IsOk bool `protobuf:"varint,6,opt,name=isOk,proto3" json:"isOk,omitempty"`
|
|
|
|
|
|
Message string `protobuf:"bytes,7,opt,name=message,proto3" json:"message,omitempty"`
|
2020-09-13 19:27:47 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2020-10-04 16:10:19 +08:00
|
|
|
|
func (x *NodeStreamMessage) Reset() {
|
|
|
|
|
|
*x = NodeStreamMessage{}
|
2020-09-13 19:27:47 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[18]
|
2020-09-13 19:27:47 +08:00
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2020-10-04 16:10:19 +08:00
|
|
|
|
func (x *NodeStreamMessage) String() string {
|
2020-09-13 19:27:47 +08:00
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2020-10-04 16:10:19 +08:00
|
|
|
|
func (*NodeStreamMessage) ProtoMessage() {}
|
2020-09-13 19:27:47 +08:00
|
|
|
|
|
2020-10-04 16:10:19 +08:00
|
|
|
|
func (x *NodeStreamMessage) ProtoReflect() protoreflect.Message {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[18]
|
2020-09-13 19:27:47 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2020-10-04 16:10:19 +08:00
|
|
|
|
// Deprecated: Use NodeStreamMessage.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*NodeStreamMessage) Descriptor() ([]byte, []int) {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{18}
|
2020-09-13 19:27:47 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2020-10-04 16:10:19 +08:00
|
|
|
|
func (x *NodeStreamMessage) GetNodeId() int64 {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.NodeId
|
|
|
|
|
|
}
|
|
|
|
|
|
return 0
|
2020-09-13 19:27:47 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2020-10-04 16:10:19 +08:00
|
|
|
|
func (x *NodeStreamMessage) GetRequestId() int64 {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.RequestId
|
2020-09-13 19:27:47 +08:00
|
|
|
|
}
|
2020-10-04 16:10:19 +08:00
|
|
|
|
return 0
|
2020-09-13 19:27:47 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2020-10-04 16:10:19 +08:00
|
|
|
|
func (x *NodeStreamMessage) GetTimeoutSeconds() int32 {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.TimeoutSeconds
|
|
|
|
|
|
}
|
|
|
|
|
|
return 0
|
2020-09-13 19:27:47 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2020-10-04 16:10:19 +08:00
|
|
|
|
func (x *NodeStreamMessage) GetCode() string {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.Code
|
|
|
|
|
|
}
|
|
|
|
|
|
return ""
|
|
|
|
|
|
}
|
2020-09-13 19:27:47 +08:00
|
|
|
|
|
2020-10-04 16:10:19 +08:00
|
|
|
|
func (x *NodeStreamMessage) GetDataJSON() []byte {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.DataJSON
|
2020-09-13 19:27:47 +08:00
|
|
|
|
}
|
2020-10-04 16:10:19 +08:00
|
|
|
|
return nil
|
2020-09-13 19:27:47 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2020-10-04 16:10:19 +08:00
|
|
|
|
func (x *NodeStreamMessage) GetIsOk() bool {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.IsOk
|
|
|
|
|
|
}
|
|
|
|
|
|
return false
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *NodeStreamMessage) GetMessage() string {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.Message
|
|
|
|
|
|
}
|
|
|
|
|
|
return ""
|
2020-09-13 19:27:47 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 更新节点状态
|
|
|
|
|
|
type UpdateNodeStatusRequest struct {
|
|
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
|
|
|
|
NodeId int64 `protobuf:"varint,1,opt,name=nodeId,proto3" json:"nodeId,omitempty"`
|
|
|
|
|
|
StatusJSON []byte `protobuf:"bytes,2,opt,name=statusJSON,proto3" json:"statusJSON,omitempty"`
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UpdateNodeStatusRequest) Reset() {
|
|
|
|
|
|
*x = UpdateNodeStatusRequest{}
|
|
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[19]
|
2020-09-13 19:27:47 +08:00
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UpdateNodeStatusRequest) String() string {
|
|
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (*UpdateNodeStatusRequest) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UpdateNodeStatusRequest) ProtoReflect() protoreflect.Message {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[19]
|
2020-09-13 19:27:47 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use UpdateNodeStatusRequest.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*UpdateNodeStatusRequest) Descriptor() ([]byte, []int) {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{19}
|
2020-09-13 19:27:47 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UpdateNodeStatusRequest) GetNodeId() int64 {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.NodeId
|
|
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UpdateNodeStatusRequest) GetStatusJSON() []byte {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.StatusJSON
|
|
|
|
|
|
}
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 计算匹配的节点数量
|
|
|
|
|
|
type CountAllEnabledNodesMatchRequest struct {
|
|
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
2020-12-17 15:51:09 +08:00
|
|
|
|
NodeClusterId int64 `protobuf:"varint,1,opt,name=nodeClusterId,proto3" json:"nodeClusterId,omitempty"`
|
|
|
|
|
|
InstallState int32 `protobuf:"varint,2,opt,name=installState,proto3" json:"installState,omitempty"`
|
|
|
|
|
|
ActiveState int32 `protobuf:"varint,3,opt,name=activeState,proto3" json:"activeState,omitempty"`
|
|
|
|
|
|
Keyword string `protobuf:"bytes,4,opt,name=keyword,proto3" json:"keyword,omitempty"`
|
2021-05-25 17:08:52 +08:00
|
|
|
|
NodeGroupId int64 `protobuf:"varint,5,opt,name=nodeGroupId,proto3" json:"nodeGroupId,omitempty"`
|
|
|
|
|
|
NodeRegionId int64 `protobuf:"varint,6,opt,name=nodeRegionId,proto3" json:"nodeRegionId,omitempty"`
|
2022-04-04 16:42:11 +08:00
|
|
|
|
Level int32 `protobuf:"varint,7,opt,name=level,proto3" json:"level,omitempty"`
|
2020-09-13 19:27:47 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *CountAllEnabledNodesMatchRequest) Reset() {
|
|
|
|
|
|
*x = CountAllEnabledNodesMatchRequest{}
|
|
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[20]
|
2020-09-13 19:27:47 +08:00
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *CountAllEnabledNodesMatchRequest) String() string {
|
|
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (*CountAllEnabledNodesMatchRequest) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *CountAllEnabledNodesMatchRequest) ProtoReflect() protoreflect.Message {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[20]
|
2020-09-13 19:27:47 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use CountAllEnabledNodesMatchRequest.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*CountAllEnabledNodesMatchRequest) Descriptor() ([]byte, []int) {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{20}
|
2020-09-13 19:27:47 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2020-12-17 15:51:09 +08:00
|
|
|
|
func (x *CountAllEnabledNodesMatchRequest) GetNodeClusterId() int64 {
|
2020-09-13 19:27:47 +08:00
|
|
|
|
if x != nil {
|
2020-12-17 15:51:09 +08:00
|
|
|
|
return x.NodeClusterId
|
2020-09-13 19:27:47 +08:00
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *CountAllEnabledNodesMatchRequest) GetInstallState() int32 {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.InstallState
|
|
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2020-09-26 08:07:24 +08:00
|
|
|
|
func (x *CountAllEnabledNodesMatchRequest) GetActiveState() int32 {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.ActiveState
|
|
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2020-10-28 18:21:26 +08:00
|
|
|
|
func (x *CountAllEnabledNodesMatchRequest) GetKeyword() string {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.Keyword
|
|
|
|
|
|
}
|
|
|
|
|
|
return ""
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
func (x *CountAllEnabledNodesMatchRequest) GetNodeGroupId() int64 {
|
2020-10-28 18:21:26 +08:00
|
|
|
|
if x != nil {
|
2021-05-25 17:08:52 +08:00
|
|
|
|
return x.NodeGroupId
|
2020-10-28 18:21:26 +08:00
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
func (x *CountAllEnabledNodesMatchRequest) GetNodeRegionId() int64 {
|
2020-12-10 16:11:31 +08:00
|
|
|
|
if x != nil {
|
2021-05-25 17:08:52 +08:00
|
|
|
|
return x.NodeRegionId
|
2020-12-10 16:11:31 +08:00
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2022-04-04 16:42:11 +08:00
|
|
|
|
func (x *CountAllEnabledNodesMatchRequest) GetLevel() int32 {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.Level
|
|
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2020-09-13 19:27:47 +08:00
|
|
|
|
// 修改节点安装状态
|
|
|
|
|
|
type UpdateNodeIsInstalledRequest struct {
|
|
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
|
|
|
|
NodeId int64 `protobuf:"varint,1,opt,name=nodeId,proto3" json:"nodeId,omitempty"`
|
|
|
|
|
|
IsInstalled bool `protobuf:"varint,2,opt,name=isInstalled,proto3" json:"isInstalled,omitempty"`
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UpdateNodeIsInstalledRequest) Reset() {
|
|
|
|
|
|
*x = UpdateNodeIsInstalledRequest{}
|
|
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[21]
|
2020-09-13 19:27:47 +08:00
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UpdateNodeIsInstalledRequest) String() string {
|
|
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (*UpdateNodeIsInstalledRequest) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UpdateNodeIsInstalledRequest) ProtoReflect() protoreflect.Message {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[21]
|
2020-09-13 19:27:47 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use UpdateNodeIsInstalledRequest.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*UpdateNodeIsInstalledRequest) Descriptor() ([]byte, []int) {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{21}
|
2020-09-13 19:27:47 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UpdateNodeIsInstalledRequest) GetNodeId() int64 {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.NodeId
|
|
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UpdateNodeIsInstalledRequest) GetIsInstalled() bool {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.IsInstalled
|
|
|
|
|
|
}
|
|
|
|
|
|
return false
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 安装节点
|
|
|
|
|
|
type InstallNodeRequest struct {
|
|
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
|
|
|
|
NodeId int64 `protobuf:"varint,1,opt,name=nodeId,proto3" json:"nodeId,omitempty"`
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *InstallNodeRequest) Reset() {
|
|
|
|
|
|
*x = InstallNodeRequest{}
|
|
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[22]
|
2020-09-13 19:27:47 +08:00
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *InstallNodeRequest) String() string {
|
|
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (*InstallNodeRequest) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *InstallNodeRequest) ProtoReflect() protoreflect.Message {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[22]
|
2020-09-13 19:27:47 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use InstallNodeRequest.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*InstallNodeRequest) Descriptor() ([]byte, []int) {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{22}
|
2020-09-13 19:27:47 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *InstallNodeRequest) GetNodeId() int64 {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.NodeId
|
|
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
type InstallNodeResponse struct {
|
|
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *InstallNodeResponse) Reset() {
|
|
|
|
|
|
*x = InstallNodeResponse{}
|
|
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[23]
|
2020-09-13 19:27:47 +08:00
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *InstallNodeResponse) String() string {
|
|
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (*InstallNodeResponse) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *InstallNodeResponse) ProtoReflect() protoreflect.Message {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[23]
|
2020-09-13 19:27:47 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use InstallNodeResponse.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*InstallNodeResponse) Descriptor() ([]byte, []int) {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{23}
|
2020-10-04 16:10:19 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2020-10-28 12:36:11 +08:00
|
|
|
|
// 升级节点
|
|
|
|
|
|
type UpgradeNodeRequest struct {
|
|
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
|
|
|
|
NodeId int64 `protobuf:"varint,1,opt,name=nodeId,proto3" json:"nodeId,omitempty"`
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UpgradeNodeRequest) Reset() {
|
|
|
|
|
|
*x = UpgradeNodeRequest{}
|
|
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[24]
|
2020-10-28 12:36:11 +08:00
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UpgradeNodeRequest) String() string {
|
|
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (*UpgradeNodeRequest) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UpgradeNodeRequest) ProtoReflect() protoreflect.Message {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[24]
|
2020-10-28 12:36:11 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use UpgradeNodeRequest.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*UpgradeNodeRequest) Descriptor() ([]byte, []int) {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{24}
|
2020-10-28 12:36:11 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UpgradeNodeRequest) GetNodeId() int64 {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.NodeId
|
|
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
type UpgradeNodeResponse struct {
|
|
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UpgradeNodeResponse) Reset() {
|
|
|
|
|
|
*x = UpgradeNodeResponse{}
|
|
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[25]
|
2020-10-28 12:36:11 +08:00
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UpgradeNodeResponse) String() string {
|
|
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (*UpgradeNodeResponse) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UpgradeNodeResponse) ProtoReflect() protoreflect.Message {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[25]
|
2020-10-28 12:36:11 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use UpgradeNodeResponse.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*UpgradeNodeResponse) Descriptor() ([]byte, []int) {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{25}
|
2020-10-28 12:36:11 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2020-10-27 12:33:18 +08:00
|
|
|
|
// 启动节点
|
|
|
|
|
|
type StartNodeRequest struct {
|
|
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
|
|
|
|
NodeId int64 `protobuf:"varint,1,opt,name=nodeId,proto3" json:"nodeId,omitempty"`
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *StartNodeRequest) Reset() {
|
|
|
|
|
|
*x = StartNodeRequest{}
|
|
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[26]
|
2020-10-27 12:33:18 +08:00
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *StartNodeRequest) String() string {
|
|
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (*StartNodeRequest) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *StartNodeRequest) ProtoReflect() protoreflect.Message {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[26]
|
2020-10-27 12:33:18 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use StartNodeRequest.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*StartNodeRequest) Descriptor() ([]byte, []int) {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{26}
|
2020-10-27 12:33:18 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *StartNodeRequest) GetNodeId() int64 {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.NodeId
|
|
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
type StartNodeResponse struct {
|
|
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
|
|
|
|
IsOk bool `protobuf:"varint,1,opt,name=isOk,proto3" json:"isOk,omitempty"`
|
|
|
|
|
|
Error string `protobuf:"bytes,2,opt,name=error,proto3" json:"error,omitempty"`
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *StartNodeResponse) Reset() {
|
|
|
|
|
|
*x = StartNodeResponse{}
|
|
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[27]
|
2020-10-27 12:33:18 +08:00
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *StartNodeResponse) String() string {
|
|
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (*StartNodeResponse) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *StartNodeResponse) ProtoReflect() protoreflect.Message {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[27]
|
2020-10-27 12:33:18 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use StartNodeResponse.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*StartNodeResponse) Descriptor() ([]byte, []int) {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{27}
|
2020-10-27 12:33:18 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *StartNodeResponse) GetIsOk() bool {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.IsOk
|
|
|
|
|
|
}
|
|
|
|
|
|
return false
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *StartNodeResponse) GetError() string {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.Error
|
|
|
|
|
|
}
|
|
|
|
|
|
return ""
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 停止节点
|
|
|
|
|
|
type StopNodeRequest struct {
|
|
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
|
|
|
|
NodeId int64 `protobuf:"varint,1,opt,name=nodeId,proto3" json:"nodeId,omitempty"`
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *StopNodeRequest) Reset() {
|
|
|
|
|
|
*x = StopNodeRequest{}
|
|
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[28]
|
2020-10-27 12:33:18 +08:00
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *StopNodeRequest) String() string {
|
|
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (*StopNodeRequest) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *StopNodeRequest) ProtoReflect() protoreflect.Message {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[28]
|
2020-10-27 12:33:18 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use StopNodeRequest.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*StopNodeRequest) Descriptor() ([]byte, []int) {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{28}
|
2020-10-27 12:33:18 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *StopNodeRequest) GetNodeId() int64 {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.NodeId
|
|
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
type StopNodeResponse struct {
|
|
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
|
|
|
|
IsOk bool `protobuf:"varint,1,opt,name=isOk,proto3" json:"isOk,omitempty"`
|
|
|
|
|
|
Error string `protobuf:"bytes,2,opt,name=error,proto3" json:"error,omitempty"`
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *StopNodeResponse) Reset() {
|
|
|
|
|
|
*x = StopNodeResponse{}
|
|
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[29]
|
2020-10-27 12:33:18 +08:00
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *StopNodeResponse) String() string {
|
|
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (*StopNodeResponse) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *StopNodeResponse) ProtoReflect() protoreflect.Message {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[29]
|
2020-10-27 12:33:18 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use StopNodeResponse.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*StopNodeResponse) Descriptor() ([]byte, []int) {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{29}
|
2020-10-27 12:33:18 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *StopNodeResponse) GetIsOk() bool {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.IsOk
|
|
|
|
|
|
}
|
|
|
|
|
|
return false
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *StopNodeResponse) GetError() string {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.Error
|
|
|
|
|
|
}
|
|
|
|
|
|
return ""
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2020-10-04 16:10:19 +08:00
|
|
|
|
// 更改节点连接的API节点信息
|
|
|
|
|
|
type UpdateNodeConnectedAPINodesRequest struct {
|
|
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
|
|
|
|
ApiNodeIds []int64 `protobuf:"varint,1,rep,packed,name=apiNodeIds,proto3" json:"apiNodeIds,omitempty"`
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UpdateNodeConnectedAPINodesRequest) Reset() {
|
|
|
|
|
|
*x = UpdateNodeConnectedAPINodesRequest{}
|
|
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[30]
|
2020-10-04 16:10:19 +08:00
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UpdateNodeConnectedAPINodesRequest) String() string {
|
|
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (*UpdateNodeConnectedAPINodesRequest) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UpdateNodeConnectedAPINodesRequest) ProtoReflect() protoreflect.Message {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[30]
|
2020-10-04 16:10:19 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use UpdateNodeConnectedAPINodesRequest.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*UpdateNodeConnectedAPINodesRequest) Descriptor() ([]byte, []int) {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{30}
|
2020-10-04 16:10:19 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UpdateNodeConnectedAPINodesRequest) GetApiNodeIds() []int64 {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.ApiNodeIds
|
|
|
|
|
|
}
|
|
|
|
|
|
return nil
|
2020-09-13 19:27:47 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2020-10-25 21:27:49 +08:00
|
|
|
|
// 计算使用某个认证的节点数量
|
2021-05-25 17:08:52 +08:00
|
|
|
|
type CountAllEnabledNodesWithNodeGrantIdRequest struct {
|
2020-10-25 21:27:49 +08:00
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
2021-05-25 17:49:05 +08:00
|
|
|
|
NodeGrantId int64 `protobuf:"varint,1,opt,name=nodeGrantId,proto3" json:"nodeGrantId,omitempty"`
|
2020-10-25 21:27:49 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
func (x *CountAllEnabledNodesWithNodeGrantIdRequest) Reset() {
|
|
|
|
|
|
*x = CountAllEnabledNodesWithNodeGrantIdRequest{}
|
2020-10-25 21:27:49 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[31]
|
2020-10-25 21:27:49 +08:00
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
func (x *CountAllEnabledNodesWithNodeGrantIdRequest) String() string {
|
2020-10-25 21:27:49 +08:00
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
func (*CountAllEnabledNodesWithNodeGrantIdRequest) ProtoMessage() {}
|
2020-10-25 21:27:49 +08:00
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
func (x *CountAllEnabledNodesWithNodeGrantIdRequest) ProtoReflect() protoreflect.Message {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[31]
|
2020-10-25 21:27:49 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
// Deprecated: Use CountAllEnabledNodesWithNodeGrantIdRequest.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*CountAllEnabledNodesWithNodeGrantIdRequest) Descriptor() ([]byte, []int) {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{31}
|
2020-10-25 21:27:49 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:49:05 +08:00
|
|
|
|
func (x *CountAllEnabledNodesWithNodeGrantIdRequest) GetNodeGrantId() int64 {
|
2020-10-25 21:27:49 +08:00
|
|
|
|
if x != nil {
|
2021-05-25 17:49:05 +08:00
|
|
|
|
return x.NodeGrantId
|
2020-10-25 21:27:49 +08:00
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 查找使用某个认证的所有节点
|
2021-05-25 17:08:52 +08:00
|
|
|
|
type FindAllEnabledNodesWithNodeGrantIdRequest struct {
|
2020-10-25 21:27:49 +08:00
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
2021-05-25 17:49:05 +08:00
|
|
|
|
NodeGrantId int64 `protobuf:"varint,1,opt,name=nodeGrantId,proto3" json:"nodeGrantId,omitempty"`
|
2020-10-25 21:27:49 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
func (x *FindAllEnabledNodesWithNodeGrantIdRequest) Reset() {
|
|
|
|
|
|
*x = FindAllEnabledNodesWithNodeGrantIdRequest{}
|
2020-10-25 21:27:49 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[32]
|
2020-10-25 21:27:49 +08:00
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
func (x *FindAllEnabledNodesWithNodeGrantIdRequest) String() string {
|
2020-10-25 21:27:49 +08:00
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
func (*FindAllEnabledNodesWithNodeGrantIdRequest) ProtoMessage() {}
|
2020-10-25 21:27:49 +08:00
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
func (x *FindAllEnabledNodesWithNodeGrantIdRequest) ProtoReflect() protoreflect.Message {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[32]
|
2020-10-25 21:27:49 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
// Deprecated: Use FindAllEnabledNodesWithNodeGrantIdRequest.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*FindAllEnabledNodesWithNodeGrantIdRequest) Descriptor() ([]byte, []int) {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{32}
|
2020-10-25 21:27:49 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:49:05 +08:00
|
|
|
|
func (x *FindAllEnabledNodesWithNodeGrantIdRequest) GetNodeGrantId() int64 {
|
2020-10-25 21:27:49 +08:00
|
|
|
|
if x != nil {
|
2021-05-25 17:49:05 +08:00
|
|
|
|
return x.NodeGrantId
|
2020-10-25 21:27:49 +08:00
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
type FindAllEnabledNodesWithNodeGrantIdResponse struct {
|
2020-10-25 21:27:49 +08:00
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
|
|
|
|
Nodes []*Node `protobuf:"bytes,1,rep,name=nodes,proto3" json:"nodes,omitempty"`
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
func (x *FindAllEnabledNodesWithNodeGrantIdResponse) Reset() {
|
|
|
|
|
|
*x = FindAllEnabledNodesWithNodeGrantIdResponse{}
|
2020-10-25 21:27:49 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[33]
|
2020-10-25 21:27:49 +08:00
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
func (x *FindAllEnabledNodesWithNodeGrantIdResponse) String() string {
|
2020-10-25 21:27:49 +08:00
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
func (*FindAllEnabledNodesWithNodeGrantIdResponse) ProtoMessage() {}
|
2020-10-25 21:27:49 +08:00
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
func (x *FindAllEnabledNodesWithNodeGrantIdResponse) ProtoReflect() protoreflect.Message {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[33]
|
2020-10-25 21:27:49 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
// Deprecated: Use FindAllEnabledNodesWithNodeGrantIdResponse.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*FindAllEnabledNodesWithNodeGrantIdResponse) Descriptor() ([]byte, []int) {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{33}
|
2020-10-25 21:27:49 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
func (x *FindAllEnabledNodesWithNodeGrantIdResponse) GetNodes() []*Node {
|
2020-10-25 21:27:49 +08:00
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.Nodes
|
|
|
|
|
|
}
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2020-10-26 21:15:13 +08:00
|
|
|
|
// 列出所有未安装的节点
|
2021-05-25 17:08:52 +08:00
|
|
|
|
type FindAllNotInstalledNodesWithNodeClusterIdRequest struct {
|
2020-10-26 21:15:13 +08:00
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
2020-12-17 15:51:09 +08:00
|
|
|
|
NodeClusterId int64 `protobuf:"varint,1,opt,name=nodeClusterId,proto3" json:"nodeClusterId,omitempty"`
|
2020-10-26 21:15:13 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
func (x *FindAllNotInstalledNodesWithNodeClusterIdRequest) Reset() {
|
|
|
|
|
|
*x = FindAllNotInstalledNodesWithNodeClusterIdRequest{}
|
2020-10-26 21:15:13 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[34]
|
2020-10-26 21:15:13 +08:00
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
func (x *FindAllNotInstalledNodesWithNodeClusterIdRequest) String() string {
|
2020-10-26 21:15:13 +08:00
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
func (*FindAllNotInstalledNodesWithNodeClusterIdRequest) ProtoMessage() {}
|
2020-10-26 21:15:13 +08:00
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
func (x *FindAllNotInstalledNodesWithNodeClusterIdRequest) ProtoReflect() protoreflect.Message {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[34]
|
2020-10-26 21:15:13 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
// Deprecated: Use FindAllNotInstalledNodesWithNodeClusterIdRequest.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*FindAllNotInstalledNodesWithNodeClusterIdRequest) Descriptor() ([]byte, []int) {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{34}
|
2020-10-26 21:15:13 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
func (x *FindAllNotInstalledNodesWithNodeClusterIdRequest) GetNodeClusterId() int64 {
|
2020-10-26 21:15:13 +08:00
|
|
|
|
if x != nil {
|
2020-12-17 15:51:09 +08:00
|
|
|
|
return x.NodeClusterId
|
2020-10-26 21:15:13 +08:00
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
type FindAllNotInstalledNodesWithNodeClusterIdResponse struct {
|
2020-10-26 21:15:13 +08:00
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
|
|
|
|
Nodes []*Node `protobuf:"bytes,1,rep,name=nodes,proto3" json:"nodes,omitempty"`
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
func (x *FindAllNotInstalledNodesWithNodeClusterIdResponse) Reset() {
|
|
|
|
|
|
*x = FindAllNotInstalledNodesWithNodeClusterIdResponse{}
|
2020-10-26 21:15:13 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[35]
|
2020-10-26 21:15:13 +08:00
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
func (x *FindAllNotInstalledNodesWithNodeClusterIdResponse) String() string {
|
2020-10-26 21:15:13 +08:00
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
func (*FindAllNotInstalledNodesWithNodeClusterIdResponse) ProtoMessage() {}
|
2020-10-26 21:15:13 +08:00
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
func (x *FindAllNotInstalledNodesWithNodeClusterIdResponse) ProtoReflect() protoreflect.Message {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[35]
|
2020-10-26 21:15:13 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
// Deprecated: Use FindAllNotInstalledNodesWithNodeClusterIdResponse.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*FindAllNotInstalledNodesWithNodeClusterIdResponse) Descriptor() ([]byte, []int) {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{35}
|
2020-10-26 21:15:13 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
func (x *FindAllNotInstalledNodesWithNodeClusterIdResponse) GetNodes() []*Node {
|
2020-10-26 21:15:13 +08:00
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.Nodes
|
|
|
|
|
|
}
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-02-02 15:25:49 +08:00
|
|
|
|
// 计算未安装的节点数量
|
2021-05-25 17:08:52 +08:00
|
|
|
|
type CountAllNotInstalledNodesWithNodeClusterIdRequest struct {
|
2021-01-31 16:01:15 +08:00
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
|
|
|
|
NodeClusterId int64 `protobuf:"varint,1,opt,name=nodeClusterId,proto3" json:"nodeClusterId,omitempty"`
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
func (x *CountAllNotInstalledNodesWithNodeClusterIdRequest) Reset() {
|
|
|
|
|
|
*x = CountAllNotInstalledNodesWithNodeClusterIdRequest{}
|
2021-01-31 16:01:15 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[36]
|
2021-01-31 16:01:15 +08:00
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
func (x *CountAllNotInstalledNodesWithNodeClusterIdRequest) String() string {
|
2021-01-31 16:01:15 +08:00
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
func (*CountAllNotInstalledNodesWithNodeClusterIdRequest) ProtoMessage() {}
|
2021-01-31 16:01:15 +08:00
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
func (x *CountAllNotInstalledNodesWithNodeClusterIdRequest) ProtoReflect() protoreflect.Message {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[36]
|
2021-01-31 16:01:15 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
// Deprecated: Use CountAllNotInstalledNodesWithNodeClusterIdRequest.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*CountAllNotInstalledNodesWithNodeClusterIdRequest) Descriptor() ([]byte, []int) {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{36}
|
2021-01-31 16:01:15 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
func (x *CountAllNotInstalledNodesWithNodeClusterIdRequest) GetNodeClusterId() int64 {
|
2021-01-31 16:01:15 +08:00
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.NodeClusterId
|
|
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2020-11-30 20:01:27 +08:00
|
|
|
|
// 计算需要升级的节点数量
|
2021-05-25 17:08:52 +08:00
|
|
|
|
type CountAllUpgradeNodesWithNodeClusterIdRequest struct {
|
2020-11-30 20:01:27 +08:00
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
2020-12-17 15:51:09 +08:00
|
|
|
|
NodeClusterId int64 `protobuf:"varint,1,opt,name=nodeClusterId,proto3" json:"nodeClusterId,omitempty"`
|
2020-11-30 20:01:27 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
func (x *CountAllUpgradeNodesWithNodeClusterIdRequest) Reset() {
|
|
|
|
|
|
*x = CountAllUpgradeNodesWithNodeClusterIdRequest{}
|
2020-11-30 20:01:27 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[37]
|
2020-11-30 20:01:27 +08:00
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
func (x *CountAllUpgradeNodesWithNodeClusterIdRequest) String() string {
|
2020-11-30 20:01:27 +08:00
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
func (*CountAllUpgradeNodesWithNodeClusterIdRequest) ProtoMessage() {}
|
2020-11-30 20:01:27 +08:00
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
func (x *CountAllUpgradeNodesWithNodeClusterIdRequest) ProtoReflect() protoreflect.Message {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[37]
|
2020-11-30 20:01:27 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
// Deprecated: Use CountAllUpgradeNodesWithNodeClusterIdRequest.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*CountAllUpgradeNodesWithNodeClusterIdRequest) Descriptor() ([]byte, []int) {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{37}
|
2020-11-30 20:01:27 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
func (x *CountAllUpgradeNodesWithNodeClusterIdRequest) GetNodeClusterId() int64 {
|
2020-11-30 20:01:27 +08:00
|
|
|
|
if x != nil {
|
2020-12-17 15:51:09 +08:00
|
|
|
|
return x.NodeClusterId
|
2020-11-30 20:01:27 +08:00
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2020-10-28 12:36:11 +08:00
|
|
|
|
// 列出所有需要升级的节点
|
2021-05-25 17:08:52 +08:00
|
|
|
|
type FindAllUpgradeNodesWithNodeClusterIdRequest struct {
|
2020-10-28 12:36:11 +08:00
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
2020-12-17 15:51:09 +08:00
|
|
|
|
NodeClusterId int64 `protobuf:"varint,1,opt,name=nodeClusterId,proto3" json:"nodeClusterId,omitempty"`
|
2020-10-28 12:36:11 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
func (x *FindAllUpgradeNodesWithNodeClusterIdRequest) Reset() {
|
|
|
|
|
|
*x = FindAllUpgradeNodesWithNodeClusterIdRequest{}
|
2020-10-28 12:36:11 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[38]
|
2020-10-28 12:36:11 +08:00
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
func (x *FindAllUpgradeNodesWithNodeClusterIdRequest) String() string {
|
2020-10-28 12:36:11 +08:00
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
func (*FindAllUpgradeNodesWithNodeClusterIdRequest) ProtoMessage() {}
|
2020-10-28 12:36:11 +08:00
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
func (x *FindAllUpgradeNodesWithNodeClusterIdRequest) ProtoReflect() protoreflect.Message {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[38]
|
2020-10-28 12:36:11 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
// Deprecated: Use FindAllUpgradeNodesWithNodeClusterIdRequest.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*FindAllUpgradeNodesWithNodeClusterIdRequest) Descriptor() ([]byte, []int) {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{38}
|
2020-10-28 12:36:11 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
func (x *FindAllUpgradeNodesWithNodeClusterIdRequest) GetNodeClusterId() int64 {
|
2020-10-28 12:36:11 +08:00
|
|
|
|
if x != nil {
|
2020-12-17 15:51:09 +08:00
|
|
|
|
return x.NodeClusterId
|
2020-10-28 12:36:11 +08:00
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
type FindAllUpgradeNodesWithNodeClusterIdResponse struct {
|
2020-10-28 12:36:11 +08:00
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
Nodes []*FindAllUpgradeNodesWithNodeClusterIdResponse_NodeUpgrade `protobuf:"bytes,1,rep,name=nodes,proto3" json:"nodes,omitempty"`
|
2020-10-28 12:36:11 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
func (x *FindAllUpgradeNodesWithNodeClusterIdResponse) Reset() {
|
|
|
|
|
|
*x = FindAllUpgradeNodesWithNodeClusterIdResponse{}
|
2020-10-28 12:36:11 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[39]
|
2020-10-28 12:36:11 +08:00
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
func (x *FindAllUpgradeNodesWithNodeClusterIdResponse) String() string {
|
2020-10-28 12:36:11 +08:00
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
func (*FindAllUpgradeNodesWithNodeClusterIdResponse) ProtoMessage() {}
|
2020-10-28 12:36:11 +08:00
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
func (x *FindAllUpgradeNodesWithNodeClusterIdResponse) ProtoReflect() protoreflect.Message {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[39]
|
2020-10-28 12:36:11 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
// Deprecated: Use FindAllUpgradeNodesWithNodeClusterIdResponse.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*FindAllUpgradeNodesWithNodeClusterIdResponse) Descriptor() ([]byte, []int) {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{39}
|
2020-10-28 12:36:11 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
func (x *FindAllUpgradeNodesWithNodeClusterIdResponse) GetNodes() []*FindAllUpgradeNodesWithNodeClusterIdResponse_NodeUpgrade {
|
2020-10-28 12:36:11 +08:00
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.Nodes
|
|
|
|
|
|
}
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2020-10-26 21:15:13 +08:00
|
|
|
|
// 读取节点安装状态
|
|
|
|
|
|
type FindNodeInstallStatusRequest struct {
|
|
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
|
|
|
|
NodeId int64 `protobuf:"varint,1,opt,name=nodeId,proto3" json:"nodeId,omitempty"`
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeInstallStatusRequest) Reset() {
|
|
|
|
|
|
*x = FindNodeInstallStatusRequest{}
|
|
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[40]
|
2020-10-26 21:15:13 +08:00
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeInstallStatusRequest) String() string {
|
|
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (*FindNodeInstallStatusRequest) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeInstallStatusRequest) ProtoReflect() protoreflect.Message {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[40]
|
2020-10-26 21:15:13 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use FindNodeInstallStatusRequest.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*FindNodeInstallStatusRequest) Descriptor() ([]byte, []int) {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{40}
|
2020-10-26 21:15:13 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeInstallStatusRequest) GetNodeId() int64 {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.NodeId
|
|
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
type FindNodeInstallStatusResponse struct {
|
|
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
|
|
|
|
InstallStatus *NodeInstallStatus `protobuf:"bytes,1,opt,name=installStatus,proto3" json:"installStatus,omitempty"`
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeInstallStatusResponse) Reset() {
|
|
|
|
|
|
*x = FindNodeInstallStatusResponse{}
|
|
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[41]
|
2020-10-26 21:15:13 +08:00
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeInstallStatusResponse) String() string {
|
|
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (*FindNodeInstallStatusResponse) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeInstallStatusResponse) ProtoReflect() protoreflect.Message {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[41]
|
2020-10-26 21:15:13 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use FindNodeInstallStatusResponse.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*FindNodeInstallStatusResponse) Descriptor() ([]byte, []int) {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{41}
|
2020-10-26 21:15:13 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeInstallStatusResponse) GetInstallStatus() *NodeInstallStatus {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.InstallStatus
|
|
|
|
|
|
}
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 修改节点登录信息
|
|
|
|
|
|
type UpdateNodeLoginRequest struct {
|
|
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
NodeId int64 `protobuf:"varint,1,opt,name=nodeId,proto3" json:"nodeId,omitempty"`
|
|
|
|
|
|
NodeLogin *NodeLogin `protobuf:"bytes,2,opt,name=nodeLogin,proto3" json:"nodeLogin,omitempty"`
|
2020-10-26 21:15:13 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UpdateNodeLoginRequest) Reset() {
|
|
|
|
|
|
*x = UpdateNodeLoginRequest{}
|
|
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[42]
|
2020-10-26 21:15:13 +08:00
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UpdateNodeLoginRequest) String() string {
|
|
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (*UpdateNodeLoginRequest) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UpdateNodeLoginRequest) ProtoReflect() protoreflect.Message {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[42]
|
2020-10-26 21:15:13 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use UpdateNodeLoginRequest.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*UpdateNodeLoginRequest) Descriptor() ([]byte, []int) {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{42}
|
2020-10-26 21:15:13 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UpdateNodeLoginRequest) GetNodeId() int64 {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.NodeId
|
|
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
func (x *UpdateNodeLoginRequest) GetNodeLogin() *NodeLogin {
|
2020-10-26 21:15:13 +08:00
|
|
|
|
if x != nil {
|
2021-05-25 17:08:52 +08:00
|
|
|
|
return x.NodeLogin
|
2020-10-26 21:15:13 +08:00
|
|
|
|
}
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2020-10-28 18:21:26 +08:00
|
|
|
|
// 计算某个节点分组内的节点数量
|
2020-12-10 15:03:08 +08:00
|
|
|
|
type CountAllEnabledNodesWithNodeGroupIdRequest struct {
|
2020-10-28 18:21:26 +08:00
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
2020-12-10 15:03:08 +08:00
|
|
|
|
NodeGroupId int64 `protobuf:"varint,1,opt,name=nodeGroupId,proto3" json:"nodeGroupId,omitempty"`
|
2020-10-28 18:21:26 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2020-12-10 15:03:08 +08:00
|
|
|
|
func (x *CountAllEnabledNodesWithNodeGroupIdRequest) Reset() {
|
|
|
|
|
|
*x = CountAllEnabledNodesWithNodeGroupIdRequest{}
|
2020-10-28 18:21:26 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[43]
|
2020-10-28 18:21:26 +08:00
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2020-12-10 15:03:08 +08:00
|
|
|
|
func (x *CountAllEnabledNodesWithNodeGroupIdRequest) String() string {
|
2020-10-28 18:21:26 +08:00
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2020-12-10 15:03:08 +08:00
|
|
|
|
func (*CountAllEnabledNodesWithNodeGroupIdRequest) ProtoMessage() {}
|
2020-10-28 18:21:26 +08:00
|
|
|
|
|
2020-12-10 15:03:08 +08:00
|
|
|
|
func (x *CountAllEnabledNodesWithNodeGroupIdRequest) ProtoReflect() protoreflect.Message {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[43]
|
2020-10-28 18:21:26 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2020-12-10 15:03:08 +08:00
|
|
|
|
// Deprecated: Use CountAllEnabledNodesWithNodeGroupIdRequest.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*CountAllEnabledNodesWithNodeGroupIdRequest) Descriptor() ([]byte, []int) {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{43}
|
2020-10-28 18:21:26 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2020-12-10 15:03:08 +08:00
|
|
|
|
func (x *CountAllEnabledNodesWithNodeGroupIdRequest) GetNodeGroupId() int64 {
|
2020-10-28 18:21:26 +08:00
|
|
|
|
if x != nil {
|
2020-12-10 15:03:08 +08:00
|
|
|
|
return x.NodeGroupId
|
2020-10-28 18:21:26 +08:00
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2023-03-18 16:04:27 +08:00
|
|
|
|
// 取得某个集群下的所有节点DNS信息
|
2021-05-25 17:08:52 +08:00
|
|
|
|
type FindAllEnabledNodesDNSWithNodeClusterIdRequest struct {
|
2020-11-14 09:42:11 +08:00
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
|
|
|
|
NodeClusterId int64 `protobuf:"varint,1,opt,name=nodeClusterId,proto3" json:"nodeClusterId,omitempty"`
|
2023-03-18 16:04:27 +08:00
|
|
|
|
IsInstalled bool `protobuf:"varint,2,opt,name=isInstalled,proto3" json:"isInstalled,omitempty"`
|
2020-11-14 09:42:11 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
func (x *FindAllEnabledNodesDNSWithNodeClusterIdRequest) Reset() {
|
|
|
|
|
|
*x = FindAllEnabledNodesDNSWithNodeClusterIdRequest{}
|
2020-11-14 09:42:11 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[44]
|
2020-11-14 09:42:11 +08:00
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
func (x *FindAllEnabledNodesDNSWithNodeClusterIdRequest) String() string {
|
2020-11-14 09:42:11 +08:00
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
func (*FindAllEnabledNodesDNSWithNodeClusterIdRequest) ProtoMessage() {}
|
2020-11-14 09:42:11 +08:00
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
func (x *FindAllEnabledNodesDNSWithNodeClusterIdRequest) ProtoReflect() protoreflect.Message {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[44]
|
2020-11-14 09:42:11 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
// Deprecated: Use FindAllEnabledNodesDNSWithNodeClusterIdRequest.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*FindAllEnabledNodesDNSWithNodeClusterIdRequest) Descriptor() ([]byte, []int) {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{44}
|
2020-11-14 09:42:11 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
func (x *FindAllEnabledNodesDNSWithNodeClusterIdRequest) GetNodeClusterId() int64 {
|
2020-11-14 09:42:11 +08:00
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.NodeClusterId
|
|
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2023-03-18 16:04:27 +08:00
|
|
|
|
func (x *FindAllEnabledNodesDNSWithNodeClusterIdRequest) GetIsInstalled() bool {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.IsInstalled
|
|
|
|
|
|
}
|
|
|
|
|
|
return false
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
type FindAllEnabledNodesDNSWithNodeClusterIdResponse struct {
|
2020-11-14 09:42:11 +08:00
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
|
|
|
|
Nodes []*NodeDNSInfo `protobuf:"bytes,1,rep,name=nodes,proto3" json:"nodes,omitempty"`
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
func (x *FindAllEnabledNodesDNSWithNodeClusterIdResponse) Reset() {
|
|
|
|
|
|
*x = FindAllEnabledNodesDNSWithNodeClusterIdResponse{}
|
2020-11-14 09:42:11 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[45]
|
2020-11-14 09:42:11 +08:00
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
func (x *FindAllEnabledNodesDNSWithNodeClusterIdResponse) String() string {
|
2020-11-14 09:42:11 +08:00
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
func (*FindAllEnabledNodesDNSWithNodeClusterIdResponse) ProtoMessage() {}
|
2020-11-14 09:42:11 +08:00
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
func (x *FindAllEnabledNodesDNSWithNodeClusterIdResponse) ProtoReflect() protoreflect.Message {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[45]
|
2020-11-14 09:42:11 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
// Deprecated: Use FindAllEnabledNodesDNSWithNodeClusterIdResponse.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*FindAllEnabledNodesDNSWithNodeClusterIdResponse) Descriptor() ([]byte, []int) {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{45}
|
2020-11-14 09:42:11 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
func (x *FindAllEnabledNodesDNSWithNodeClusterIdResponse) GetNodes() []*NodeDNSInfo {
|
2020-11-14 09:42:11 +08:00
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.Nodes
|
|
|
|
|
|
}
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
type NodeDNSInfo struct {
|
|
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
2020-12-23 19:45:22 +08:00
|
|
|
|
Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
|
|
|
|
|
|
Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
|
|
|
|
|
|
IpAddr string `protobuf:"bytes,3,opt,name=ipAddr,proto3" json:"ipAddr,omitempty"`
|
2022-10-24 16:34:12 +08:00
|
|
|
|
NodeIPAddressId int64 `protobuf:"varint,9,opt,name=nodeIPAddressId,proto3" json:"nodeIPAddressId,omitempty"`
|
2020-12-23 19:45:22 +08:00
|
|
|
|
Routes []*DNSRoute `protobuf:"bytes,4,rep,name=routes,proto3" json:"routes,omitempty"`
|
|
|
|
|
|
NodeClusterId int64 `protobuf:"varint,5,opt,name=nodeClusterId,proto3" json:"nodeClusterId,omitempty"`
|
|
|
|
|
|
DnsDomainId int64 `protobuf:"varint,6,opt,name=dnsDomainId,proto3" json:"dnsDomainId,omitempty"`
|
|
|
|
|
|
DnsDomainName string `protobuf:"bytes,7,opt,name=dnsDomainName,proto3" json:"dnsDomainName,omitempty"`
|
|
|
|
|
|
NodeClusterDNSName string `protobuf:"bytes,8,opt,name=nodeClusterDNSName,proto3" json:"nodeClusterDNSName,omitempty"`
|
2023-05-17 18:42:35 +08:00
|
|
|
|
IsBackupForCluster bool `protobuf:"varint,10,opt,name=isBackupForCluster,proto3" json:"isBackupForCluster,omitempty"` // 是否为集群备份节点
|
|
|
|
|
|
IsBackupForGroup bool `protobuf:"varint,11,opt,name=isBackupForGroup,proto3" json:"isBackupForGroup,omitempty"` // 是否为分组备份节点
|
|
|
|
|
|
IsOffline bool `protobuf:"varint,12,opt,name=isOffline,proto3" json:"isOffline,omitempty"` // 是否下线
|
2020-11-14 09:42:11 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *NodeDNSInfo) Reset() {
|
|
|
|
|
|
*x = NodeDNSInfo{}
|
|
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[46]
|
2020-11-14 09:42:11 +08:00
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *NodeDNSInfo) String() string {
|
|
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (*NodeDNSInfo) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *NodeDNSInfo) ProtoReflect() protoreflect.Message {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[46]
|
2020-11-14 09:42:11 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use NodeDNSInfo.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*NodeDNSInfo) Descriptor() ([]byte, []int) {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{46}
|
2020-11-14 09:42:11 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *NodeDNSInfo) GetId() int64 {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.Id
|
|
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *NodeDNSInfo) GetName() string {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.Name
|
|
|
|
|
|
}
|
|
|
|
|
|
return ""
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *NodeDNSInfo) GetIpAddr() string {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.IpAddr
|
|
|
|
|
|
}
|
|
|
|
|
|
return ""
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2022-10-24 16:34:12 +08:00
|
|
|
|
func (x *NodeDNSInfo) GetNodeIPAddressId() int64 {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.NodeIPAddressId
|
|
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2020-11-16 13:03:58 +08:00
|
|
|
|
func (x *NodeDNSInfo) GetRoutes() []*DNSRoute {
|
2020-11-14 09:42:11 +08:00
|
|
|
|
if x != nil {
|
2020-11-16 13:03:58 +08:00
|
|
|
|
return x.Routes
|
2020-11-14 09:42:11 +08:00
|
|
|
|
}
|
2020-11-15 11:57:54 +08:00
|
|
|
|
return nil
|
2020-11-14 09:42:11 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2020-12-17 15:51:09 +08:00
|
|
|
|
func (x *NodeDNSInfo) GetNodeClusterId() int64 {
|
2020-11-14 09:42:11 +08:00
|
|
|
|
if x != nil {
|
2020-12-17 15:51:09 +08:00
|
|
|
|
return x.NodeClusterId
|
2020-11-14 09:42:11 +08:00
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *NodeDNSInfo) GetDnsDomainId() int64 {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.DnsDomainId
|
|
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2020-11-14 21:28:02 +08:00
|
|
|
|
func (x *NodeDNSInfo) GetDnsDomainName() string {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.DnsDomainName
|
|
|
|
|
|
}
|
|
|
|
|
|
return ""
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2020-12-23 19:45:22 +08:00
|
|
|
|
func (x *NodeDNSInfo) GetNodeClusterDNSName() string {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.NodeClusterDNSName
|
|
|
|
|
|
}
|
|
|
|
|
|
return ""
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2023-05-17 18:42:35 +08:00
|
|
|
|
func (x *NodeDNSInfo) GetIsBackupForCluster() bool {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.IsBackupForCluster
|
|
|
|
|
|
}
|
|
|
|
|
|
return false
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *NodeDNSInfo) GetIsBackupForGroup() bool {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.IsBackupForGroup
|
|
|
|
|
|
}
|
|
|
|
|
|
return false
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *NodeDNSInfo) GetIsOffline() bool {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.IsOffline
|
|
|
|
|
|
}
|
|
|
|
|
|
return false
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2020-11-14 09:42:11 +08:00
|
|
|
|
// 查找单个节点的域名解析信息
|
|
|
|
|
|
type FindEnabledNodeDNSRequest struct {
|
|
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
2021-07-31 22:23:16 +08:00
|
|
|
|
NodeId int64 `protobuf:"varint,1,opt,name=nodeId,proto3" json:"nodeId,omitempty"`
|
|
|
|
|
|
NodeClusterId int64 `protobuf:"varint,2,opt,name=nodeClusterId,proto3" json:"nodeClusterId,omitempty"`
|
2022-10-24 16:34:12 +08:00
|
|
|
|
NodeIPAddrId int64 `protobuf:"varint,3,opt,name=nodeIPAddrId,proto3" json:"nodeIPAddrId,omitempty"`
|
2020-11-14 09:42:11 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindEnabledNodeDNSRequest) Reset() {
|
|
|
|
|
|
*x = FindEnabledNodeDNSRequest{}
|
|
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[47]
|
2020-11-14 09:42:11 +08:00
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindEnabledNodeDNSRequest) String() string {
|
|
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (*FindEnabledNodeDNSRequest) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindEnabledNodeDNSRequest) ProtoReflect() protoreflect.Message {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[47]
|
2020-11-14 09:42:11 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use FindEnabledNodeDNSRequest.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*FindEnabledNodeDNSRequest) Descriptor() ([]byte, []int) {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{47}
|
2020-11-14 09:42:11 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindEnabledNodeDNSRequest) GetNodeId() int64 {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.NodeId
|
|
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-07-31 22:23:16 +08:00
|
|
|
|
func (x *FindEnabledNodeDNSRequest) GetNodeClusterId() int64 {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.NodeClusterId
|
|
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2022-10-24 16:34:12 +08:00
|
|
|
|
func (x *FindEnabledNodeDNSRequest) GetNodeIPAddrId() int64 {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.NodeIPAddrId
|
|
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2020-11-14 09:42:11 +08:00
|
|
|
|
type FindEnabledNodeDNSResponse struct {
|
|
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
|
|
|
|
Node *NodeDNSInfo `protobuf:"bytes,1,opt,name=node,proto3" json:"node,omitempty"`
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindEnabledNodeDNSResponse) Reset() {
|
|
|
|
|
|
*x = FindEnabledNodeDNSResponse{}
|
|
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[48]
|
2020-11-14 09:42:11 +08:00
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindEnabledNodeDNSResponse) String() string {
|
|
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (*FindEnabledNodeDNSResponse) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindEnabledNodeDNSResponse) ProtoReflect() protoreflect.Message {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[48]
|
2020-11-14 09:42:11 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use FindEnabledNodeDNSResponse.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*FindEnabledNodeDNSResponse) Descriptor() ([]byte, []int) {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{48}
|
2020-11-14 09:42:11 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindEnabledNodeDNSResponse) GetNode() *NodeDNSInfo {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.Node
|
|
|
|
|
|
}
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 修改节点的DNS信息
|
|
|
|
|
|
type UpdateNodeDNSRequest struct {
|
|
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
2022-10-24 16:34:12 +08:00
|
|
|
|
NodeId int64 `protobuf:"varint,1,opt,name=nodeId,proto3" json:"nodeId,omitempty"`
|
|
|
|
|
|
IpAddr string `protobuf:"bytes,2,opt,name=ipAddr,proto3" json:"ipAddr,omitempty"`
|
|
|
|
|
|
NodeIPAddressId int64 `protobuf:"varint,5,opt,name=nodeIPAddressId,proto3" json:"nodeIPAddressId,omitempty"`
|
|
|
|
|
|
DnsDomainId int64 `protobuf:"varint,3,opt,name=dnsDomainId,proto3" json:"dnsDomainId,omitempty"`
|
|
|
|
|
|
Routes []string `protobuf:"bytes,4,rep,name=routes,proto3" json:"routes,omitempty"`
|
2020-11-14 09:42:11 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UpdateNodeDNSRequest) Reset() {
|
|
|
|
|
|
*x = UpdateNodeDNSRequest{}
|
|
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[49]
|
2020-11-14 09:42:11 +08:00
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UpdateNodeDNSRequest) String() string {
|
|
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (*UpdateNodeDNSRequest) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UpdateNodeDNSRequest) ProtoReflect() protoreflect.Message {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[49]
|
2020-11-14 09:42:11 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use UpdateNodeDNSRequest.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*UpdateNodeDNSRequest) Descriptor() ([]byte, []int) {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{49}
|
2020-11-14 09:42:11 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UpdateNodeDNSRequest) GetNodeId() int64 {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.NodeId
|
|
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UpdateNodeDNSRequest) GetIpAddr() string {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.IpAddr
|
|
|
|
|
|
}
|
|
|
|
|
|
return ""
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2022-10-24 16:34:12 +08:00
|
|
|
|
func (x *UpdateNodeDNSRequest) GetNodeIPAddressId() int64 {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.NodeIPAddressId
|
|
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2020-11-14 09:42:11 +08:00
|
|
|
|
func (x *UpdateNodeDNSRequest) GetDnsDomainId() int64 {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.DnsDomainId
|
|
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2020-11-16 13:03:58 +08:00
|
|
|
|
func (x *UpdateNodeDNSRequest) GetRoutes() []string {
|
2020-11-14 09:42:11 +08:00
|
|
|
|
if x != nil {
|
2020-11-16 13:03:58 +08:00
|
|
|
|
return x.Routes
|
2020-11-14 09:42:11 +08:00
|
|
|
|
}
|
2020-11-16 13:03:58 +08:00
|
|
|
|
return nil
|
2020-11-14 09:42:11 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2020-12-10 15:03:08 +08:00
|
|
|
|
// 计算某个区域下的节点数量
|
|
|
|
|
|
type CountAllEnabledNodesWithNodeRegionIdRequest struct {
|
|
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
|
|
|
|
NodeRegionId int64 `protobuf:"varint,1,opt,name=nodeRegionId,proto3" json:"nodeRegionId,omitempty"`
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *CountAllEnabledNodesWithNodeRegionIdRequest) Reset() {
|
|
|
|
|
|
*x = CountAllEnabledNodesWithNodeRegionIdRequest{}
|
|
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[50]
|
2020-12-10 15:03:08 +08:00
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *CountAllEnabledNodesWithNodeRegionIdRequest) String() string {
|
|
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (*CountAllEnabledNodesWithNodeRegionIdRequest) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *CountAllEnabledNodesWithNodeRegionIdRequest) ProtoReflect() protoreflect.Message {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[50]
|
2020-12-10 15:03:08 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use CountAllEnabledNodesWithNodeRegionIdRequest.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*CountAllEnabledNodesWithNodeRegionIdRequest) Descriptor() ([]byte, []int) {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{50}
|
2020-12-10 15:03:08 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *CountAllEnabledNodesWithNodeRegionIdRequest) GetNodeRegionId() int64 {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.NodeRegionId
|
|
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-01-17 16:48:05 +08:00
|
|
|
|
// 根据一组ID获取节点信息
|
|
|
|
|
|
type FindEnabledNodesWithIdsRequest struct {
|
|
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
|
|
|
|
NodeIds []int64 `protobuf:"varint,1,rep,packed,name=nodeIds,proto3" json:"nodeIds,omitempty"`
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindEnabledNodesWithIdsRequest) Reset() {
|
|
|
|
|
|
*x = FindEnabledNodesWithIdsRequest{}
|
|
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[51]
|
2021-01-17 16:48:05 +08:00
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindEnabledNodesWithIdsRequest) String() string {
|
|
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (*FindEnabledNodesWithIdsRequest) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindEnabledNodesWithIdsRequest) ProtoReflect() protoreflect.Message {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[51]
|
2021-01-17 16:48:05 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use FindEnabledNodesWithIdsRequest.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*FindEnabledNodesWithIdsRequest) Descriptor() ([]byte, []int) {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{51}
|
2021-01-17 16:48:05 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindEnabledNodesWithIdsRequest) GetNodeIds() []int64 {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.NodeIds
|
|
|
|
|
|
}
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
type FindEnabledNodesWithIdsResponse struct {
|
|
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
|
|
|
|
Nodes []*Node `protobuf:"bytes,1,rep,name=nodes,proto3" json:"nodes,omitempty"`
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindEnabledNodesWithIdsResponse) Reset() {
|
|
|
|
|
|
*x = FindEnabledNodesWithIdsResponse{}
|
|
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[52]
|
2021-01-17 16:48:05 +08:00
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindEnabledNodesWithIdsResponse) String() string {
|
|
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (*FindEnabledNodesWithIdsResponse) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindEnabledNodesWithIdsResponse) ProtoReflect() protoreflect.Message {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[52]
|
2021-01-17 16:48:05 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use FindEnabledNodesWithIdsResponse.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*FindEnabledNodesWithIdsResponse) Descriptor() ([]byte, []int) {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{52}
|
2021-01-17 16:48:05 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindEnabledNodesWithIdsResponse) GetNodes() []*Node {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.Nodes
|
|
|
|
|
|
}
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-01-31 11:05:41 +08:00
|
|
|
|
// 检查新版本
|
|
|
|
|
|
type CheckNodeLatestVersionRequest struct {
|
|
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
|
|
|
|
Os string `protobuf:"bytes,1,opt,name=os,proto3" json:"os,omitempty"`
|
|
|
|
|
|
Arch string `protobuf:"bytes,2,opt,name=arch,proto3" json:"arch,omitempty"`
|
|
|
|
|
|
CurrentVersion string `protobuf:"bytes,3,opt,name=currentVersion,proto3" json:"currentVersion,omitempty"`
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *CheckNodeLatestVersionRequest) Reset() {
|
|
|
|
|
|
*x = CheckNodeLatestVersionRequest{}
|
|
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[53]
|
2021-01-31 11:05:41 +08:00
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *CheckNodeLatestVersionRequest) String() string {
|
|
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (*CheckNodeLatestVersionRequest) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *CheckNodeLatestVersionRequest) ProtoReflect() protoreflect.Message {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[53]
|
2021-01-31 11:05:41 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use CheckNodeLatestVersionRequest.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*CheckNodeLatestVersionRequest) Descriptor() ([]byte, []int) {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{53}
|
2021-01-31 11:05:41 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *CheckNodeLatestVersionRequest) GetOs() string {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.Os
|
|
|
|
|
|
}
|
|
|
|
|
|
return ""
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *CheckNodeLatestVersionRequest) GetArch() string {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.Arch
|
|
|
|
|
|
}
|
|
|
|
|
|
return ""
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *CheckNodeLatestVersionRequest) GetCurrentVersion() string {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.CurrentVersion
|
|
|
|
|
|
}
|
|
|
|
|
|
return ""
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
type CheckNodeLatestVersionResponse struct {
|
|
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
|
|
|
|
HasNewVersion bool `protobuf:"varint,1,opt,name=hasNewVersion,proto3" json:"hasNewVersion,omitempty"`
|
|
|
|
|
|
NewVersion string `protobuf:"bytes,2,opt,name=newVersion,proto3" json:"newVersion,omitempty"`
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *CheckNodeLatestVersionResponse) Reset() {
|
|
|
|
|
|
*x = CheckNodeLatestVersionResponse{}
|
|
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[54]
|
2021-01-31 11:05:41 +08:00
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *CheckNodeLatestVersionResponse) String() string {
|
|
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (*CheckNodeLatestVersionResponse) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *CheckNodeLatestVersionResponse) ProtoReflect() protoreflect.Message {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[54]
|
2021-01-31 11:05:41 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use CheckNodeLatestVersionResponse.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*CheckNodeLatestVersionResponse) Descriptor() ([]byte, []int) {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{54}
|
2021-01-31 11:05:41 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *CheckNodeLatestVersionResponse) GetHasNewVersion() bool {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.HasNewVersion
|
|
|
|
|
|
}
|
|
|
|
|
|
return false
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *CheckNodeLatestVersionResponse) GetNewVersion() string {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.NewVersion
|
|
|
|
|
|
}
|
|
|
|
|
|
return ""
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-02-24 19:27:07 +08:00
|
|
|
|
// 设置节点上线状态
|
|
|
|
|
|
type UpdateNodeUpRequest struct {
|
|
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
|
|
|
|
NodeId int64 `protobuf:"varint,1,opt,name=nodeId,proto3" json:"nodeId,omitempty"`
|
|
|
|
|
|
IsUp bool `protobuf:"varint,2,opt,name=isUp,proto3" json:"isUp,omitempty"`
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UpdateNodeUpRequest) Reset() {
|
|
|
|
|
|
*x = UpdateNodeUpRequest{}
|
|
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[55]
|
2021-02-24 19:27:07 +08:00
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UpdateNodeUpRequest) String() string {
|
|
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (*UpdateNodeUpRequest) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UpdateNodeUpRequest) ProtoReflect() protoreflect.Message {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[55]
|
2021-02-24 19:27:07 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use UpdateNodeUpRequest.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*UpdateNodeUpRequest) Descriptor() ([]byte, []int) {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{55}
|
2021-02-24 19:27:07 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UpdateNodeUpRequest) GetNodeId() int64 {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.NodeId
|
|
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UpdateNodeUpRequest) GetIsUp() bool {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.IsUp
|
|
|
|
|
|
}
|
|
|
|
|
|
return false
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-06-10 19:19:30 +08:00
|
|
|
|
// 下载最新边缘节点安装文件
|
|
|
|
|
|
type DownloadNodeInstallationFileRequest struct {
|
|
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
|
|
|
|
Os string `protobuf:"bytes,1,opt,name=os,proto3" json:"os,omitempty"`
|
|
|
|
|
|
Arch string `protobuf:"bytes,2,opt,name=arch,proto3" json:"arch,omitempty"`
|
|
|
|
|
|
ChunkOffset int64 `protobuf:"varint,3,opt,name=chunkOffset,proto3" json:"chunkOffset,omitempty"`
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *DownloadNodeInstallationFileRequest) Reset() {
|
|
|
|
|
|
*x = DownloadNodeInstallationFileRequest{}
|
|
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[56]
|
2021-06-10 19:19:30 +08:00
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *DownloadNodeInstallationFileRequest) String() string {
|
|
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (*DownloadNodeInstallationFileRequest) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *DownloadNodeInstallationFileRequest) ProtoReflect() protoreflect.Message {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[56]
|
2021-06-10 19:19:30 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use DownloadNodeInstallationFileRequest.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*DownloadNodeInstallationFileRequest) Descriptor() ([]byte, []int) {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{56}
|
2021-06-10 19:19:30 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *DownloadNodeInstallationFileRequest) GetOs() string {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.Os
|
|
|
|
|
|
}
|
|
|
|
|
|
return ""
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *DownloadNodeInstallationFileRequest) GetArch() string {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.Arch
|
|
|
|
|
|
}
|
|
|
|
|
|
return ""
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *DownloadNodeInstallationFileRequest) GetChunkOffset() int64 {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.ChunkOffset
|
|
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
type DownloadNodeInstallationFileResponse struct {
|
|
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
|
|
|
|
ChunkData []byte `protobuf:"bytes,1,opt,name=chunkData,proto3" json:"chunkData,omitempty"`
|
|
|
|
|
|
Sum string `protobuf:"bytes,2,opt,name=sum,proto3" json:"sum,omitempty"` // 文件的md5sum
|
|
|
|
|
|
Offset int64 `protobuf:"varint,3,opt,name=offset,proto3" json:"offset,omitempty"`
|
|
|
|
|
|
Version string `protobuf:"bytes,4,opt,name=version,proto3" json:"version,omitempty"`
|
|
|
|
|
|
Filename string `protobuf:"bytes,5,opt,name=filename,proto3" json:"filename,omitempty"`
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *DownloadNodeInstallationFileResponse) Reset() {
|
|
|
|
|
|
*x = DownloadNodeInstallationFileResponse{}
|
|
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[57]
|
2021-06-10 19:19:30 +08:00
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *DownloadNodeInstallationFileResponse) String() string {
|
|
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (*DownloadNodeInstallationFileResponse) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *DownloadNodeInstallationFileResponse) ProtoReflect() protoreflect.Message {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[57]
|
2021-06-10 19:19:30 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use DownloadNodeInstallationFileResponse.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*DownloadNodeInstallationFileResponse) Descriptor() ([]byte, []int) {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{57}
|
2021-06-10 19:19:30 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *DownloadNodeInstallationFileResponse) GetChunkData() []byte {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.ChunkData
|
|
|
|
|
|
}
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *DownloadNodeInstallationFileResponse) GetSum() string {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.Sum
|
|
|
|
|
|
}
|
|
|
|
|
|
return ""
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *DownloadNodeInstallationFileResponse) GetOffset() int64 {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.Offset
|
|
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *DownloadNodeInstallationFileResponse) GetVersion() string {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.Version
|
|
|
|
|
|
}
|
|
|
|
|
|
return ""
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *DownloadNodeInstallationFileResponse) GetFilename() string {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.Filename
|
|
|
|
|
|
}
|
|
|
|
|
|
return ""
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-09-13 16:47:46 +08:00
|
|
|
|
// 修改节点系统信息
|
|
|
|
|
|
type UpdateNodeSystemRequest struct {
|
|
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
|
|
|
|
NodeId int64 `protobuf:"varint,1,opt,name=nodeId,proto3" json:"nodeId,omitempty"`
|
|
|
|
|
|
MaxCPU int32 `protobuf:"varint,2,opt,name=maxCPU,proto3" json:"maxCPU,omitempty"`
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UpdateNodeSystemRequest) Reset() {
|
|
|
|
|
|
*x = UpdateNodeSystemRequest{}
|
|
|
|
|
|
if protoimpl.UnsafeEnabled {
|
|
|
|
|
|
mi := &file_service_node_proto_msgTypes[58]
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UpdateNodeSystemRequest) String() string {
|
|
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (*UpdateNodeSystemRequest) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UpdateNodeSystemRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
mi := &file_service_node_proto_msgTypes[58]
|
|
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use UpdateNodeSystemRequest.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*UpdateNodeSystemRequest) Descriptor() ([]byte, []int) {
|
|
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{58}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UpdateNodeSystemRequest) GetNodeId() int64 {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.NodeId
|
|
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UpdateNodeSystemRequest) GetMaxCPU() int32 {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.MaxCPU
|
|
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 修改节点缓存设置
|
|
|
|
|
|
type UpdateNodeCacheRequest struct {
|
|
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
2022-11-15 20:35:39 +08:00
|
|
|
|
NodeId int64 `protobuf:"varint,1,opt,name=nodeId,proto3" json:"nodeId,omitempty"` // 节点ID
|
|
|
|
|
|
MaxCacheDiskCapacity *SizeCapacity `protobuf:"bytes,2,opt,name=maxCacheDiskCapacity,proto3" json:"maxCacheDiskCapacity,omitempty"` // 磁盘容量限制
|
|
|
|
|
|
MaxCacheMemoryCapacity *SizeCapacity `protobuf:"bytes,3,opt,name=maxCacheMemoryCapacity,proto3" json:"maxCacheMemoryCapacity,omitempty"` // 内存容量限制
|
|
|
|
|
|
CacheDiskDir string `protobuf:"bytes,4,opt,name=cacheDiskDir,proto3" json:"cacheDiskDir,omitempty"` // 磁盘缓存目录
|
|
|
|
|
|
CacheDiskSubDirsJSON []byte `protobuf:"bytes,5,opt,name=cacheDiskSubDirsJSON,proto3" json:"cacheDiskSubDirsJSON,omitempty"` // 磁盘缓存子目录
|
2021-09-13 16:47:46 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UpdateNodeCacheRequest) Reset() {
|
|
|
|
|
|
*x = UpdateNodeCacheRequest{}
|
|
|
|
|
|
if protoimpl.UnsafeEnabled {
|
|
|
|
|
|
mi := &file_service_node_proto_msgTypes[59]
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UpdateNodeCacheRequest) String() string {
|
|
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (*UpdateNodeCacheRequest) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UpdateNodeCacheRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
mi := &file_service_node_proto_msgTypes[59]
|
|
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use UpdateNodeCacheRequest.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*UpdateNodeCacheRequest) Descriptor() ([]byte, []int) {
|
|
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{59}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UpdateNodeCacheRequest) GetNodeId() int64 {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.NodeId
|
|
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UpdateNodeCacheRequest) GetMaxCacheDiskCapacity() *SizeCapacity {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.MaxCacheDiskCapacity
|
|
|
|
|
|
}
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UpdateNodeCacheRequest) GetMaxCacheMemoryCapacity() *SizeCapacity {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.MaxCacheMemoryCapacity
|
|
|
|
|
|
}
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2022-03-16 15:24:56 +08:00
|
|
|
|
func (x *UpdateNodeCacheRequest) GetCacheDiskDir() string {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.CacheDiskDir
|
|
|
|
|
|
}
|
|
|
|
|
|
return ""
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2022-11-15 20:35:39 +08:00
|
|
|
|
func (x *UpdateNodeCacheRequest) GetCacheDiskSubDirsJSON() []byte {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.CacheDiskSubDirsJSON
|
|
|
|
|
|
}
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2022-04-04 16:42:11 +08:00
|
|
|
|
// 读取节点级别信息
|
|
|
|
|
|
type FindNodeLevelInfoRequest struct {
|
|
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeLevelInfoRequest) Reset() {
|
|
|
|
|
|
*x = FindNodeLevelInfoRequest{}
|
|
|
|
|
|
if protoimpl.UnsafeEnabled {
|
|
|
|
|
|
mi := &file_service_node_proto_msgTypes[60]
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeLevelInfoRequest) String() string {
|
|
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (*FindNodeLevelInfoRequest) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeLevelInfoRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
mi := &file_service_node_proto_msgTypes[60]
|
|
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use FindNodeLevelInfoRequest.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*FindNodeLevelInfoRequest) Descriptor() ([]byte, []int) {
|
|
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{60}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
type FindNodeLevelInfoResponse struct {
|
|
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
|
|
|
|
Level int32 `protobuf:"varint,1,opt,name=level,proto3" json:"level,omitempty"`
|
|
|
|
|
|
ParentNodesMapJSON []byte `protobuf:"bytes,2,opt,name=parentNodesMapJSON,proto3" json:"parentNodesMapJSON,omitempty"`
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeLevelInfoResponse) Reset() {
|
|
|
|
|
|
*x = FindNodeLevelInfoResponse{}
|
|
|
|
|
|
if protoimpl.UnsafeEnabled {
|
|
|
|
|
|
mi := &file_service_node_proto_msgTypes[61]
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeLevelInfoResponse) String() string {
|
|
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (*FindNodeLevelInfoResponse) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeLevelInfoResponse) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
mi := &file_service_node_proto_msgTypes[61]
|
|
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use FindNodeLevelInfoResponse.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*FindNodeLevelInfoResponse) Descriptor() ([]byte, []int) {
|
|
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{61}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeLevelInfoResponse) GetLevel() int32 {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.Level
|
|
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeLevelInfoResponse) GetParentNodesMapJSON() []byte {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.ParentNodesMapJSON
|
|
|
|
|
|
}
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2022-05-04 16:40:43 +08:00
|
|
|
|
// 读取节点DNS Resolver
|
|
|
|
|
|
type FindNodeDNSResolverRequest struct {
|
|
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
|
|
|
|
NodeId int64 `protobuf:"varint,1,opt,name=nodeId,proto3" json:"nodeId,omitempty"`
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeDNSResolverRequest) Reset() {
|
|
|
|
|
|
*x = FindNodeDNSResolverRequest{}
|
|
|
|
|
|
if protoimpl.UnsafeEnabled {
|
|
|
|
|
|
mi := &file_service_node_proto_msgTypes[62]
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeDNSResolverRequest) String() string {
|
|
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (*FindNodeDNSResolverRequest) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeDNSResolverRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
mi := &file_service_node_proto_msgTypes[62]
|
|
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use FindNodeDNSResolverRequest.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*FindNodeDNSResolverRequest) Descriptor() ([]byte, []int) {
|
|
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{62}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeDNSResolverRequest) GetNodeId() int64 {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.NodeId
|
|
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
type FindNodeDNSResolverResponse struct {
|
|
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
|
|
|
|
DnsResolverJSON []byte `protobuf:"bytes,1,opt,name=dnsResolverJSON,proto3" json:"dnsResolverJSON,omitempty"`
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeDNSResolverResponse) Reset() {
|
|
|
|
|
|
*x = FindNodeDNSResolverResponse{}
|
|
|
|
|
|
if protoimpl.UnsafeEnabled {
|
|
|
|
|
|
mi := &file_service_node_proto_msgTypes[63]
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeDNSResolverResponse) String() string {
|
|
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (*FindNodeDNSResolverResponse) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeDNSResolverResponse) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
mi := &file_service_node_proto_msgTypes[63]
|
|
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use FindNodeDNSResolverResponse.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*FindNodeDNSResolverResponse) Descriptor() ([]byte, []int) {
|
|
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{63}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeDNSResolverResponse) GetDnsResolverJSON() []byte {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.DnsResolverJSON
|
|
|
|
|
|
}
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 修改DNS Resolver
|
|
|
|
|
|
type UpdateNodeDNSResolverRequest struct {
|
|
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
|
|
|
|
NodeId int64 `protobuf:"varint,1,opt,name=nodeId,proto3" json:"nodeId,omitempty"`
|
|
|
|
|
|
DnsResolverJSON []byte `protobuf:"bytes,2,opt,name=dnsResolverJSON,proto3" json:"dnsResolverJSON,omitempty"`
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UpdateNodeDNSResolverRequest) Reset() {
|
|
|
|
|
|
*x = UpdateNodeDNSResolverRequest{}
|
|
|
|
|
|
if protoimpl.UnsafeEnabled {
|
|
|
|
|
|
mi := &file_service_node_proto_msgTypes[64]
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UpdateNodeDNSResolverRequest) String() string {
|
|
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (*UpdateNodeDNSResolverRequest) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UpdateNodeDNSResolverRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
mi := &file_service_node_proto_msgTypes[64]
|
|
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use UpdateNodeDNSResolverRequest.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*UpdateNodeDNSResolverRequest) Descriptor() ([]byte, []int) {
|
|
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{64}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UpdateNodeDNSResolverRequest) GetNodeId() int64 {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.NodeId
|
|
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UpdateNodeDNSResolverRequest) GetDnsResolverJSON() []byte {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.DnsResolverJSON
|
|
|
|
|
|
}
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2022-05-18 21:02:58 +08:00
|
|
|
|
// 获取节点的DDoS设置
|
|
|
|
|
|
type FindNodeDDoSProtectionRequest struct {
|
|
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
|
|
|
|
NodeId int64 `protobuf:"varint,1,opt,name=nodeId,proto3" json:"nodeId,omitempty"`
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeDDoSProtectionRequest) Reset() {
|
|
|
|
|
|
*x = FindNodeDDoSProtectionRequest{}
|
|
|
|
|
|
if protoimpl.UnsafeEnabled {
|
|
|
|
|
|
mi := &file_service_node_proto_msgTypes[65]
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeDDoSProtectionRequest) String() string {
|
|
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (*FindNodeDDoSProtectionRequest) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeDDoSProtectionRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
mi := &file_service_node_proto_msgTypes[65]
|
|
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use FindNodeDDoSProtectionRequest.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*FindNodeDDoSProtectionRequest) Descriptor() ([]byte, []int) {
|
|
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{65}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeDDoSProtectionRequest) GetNodeId() int64 {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.NodeId
|
|
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
type FindNodeDDoSProtectionResponse struct {
|
|
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
|
|
|
|
DdosProtectionJSON []byte `protobuf:"bytes,1,opt,name=ddosProtectionJSON,proto3" json:"ddosProtectionJSON,omitempty"`
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeDDoSProtectionResponse) Reset() {
|
|
|
|
|
|
*x = FindNodeDDoSProtectionResponse{}
|
|
|
|
|
|
if protoimpl.UnsafeEnabled {
|
|
|
|
|
|
mi := &file_service_node_proto_msgTypes[66]
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeDDoSProtectionResponse) String() string {
|
|
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (*FindNodeDDoSProtectionResponse) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeDDoSProtectionResponse) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
mi := &file_service_node_proto_msgTypes[66]
|
|
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use FindNodeDDoSProtectionResponse.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*FindNodeDDoSProtectionResponse) Descriptor() ([]byte, []int) {
|
|
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{66}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeDDoSProtectionResponse) GetDdosProtectionJSON() []byte {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.DdosProtectionJSON
|
|
|
|
|
|
}
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2022-08-22 15:10:48 +08:00
|
|
|
|
// 修改节点的DDoS设置
|
2022-05-18 21:02:58 +08:00
|
|
|
|
type UpdateNodeDDoSProtectionRequest struct {
|
|
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
|
|
|
|
NodeId int64 `protobuf:"varint,1,opt,name=nodeId,proto3" json:"nodeId,omitempty"`
|
|
|
|
|
|
DdosProtectionJSON []byte `protobuf:"bytes,2,opt,name=ddosProtectionJSON,proto3" json:"ddosProtectionJSON,omitempty"`
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UpdateNodeDDoSProtectionRequest) Reset() {
|
|
|
|
|
|
*x = UpdateNodeDDoSProtectionRequest{}
|
|
|
|
|
|
if protoimpl.UnsafeEnabled {
|
|
|
|
|
|
mi := &file_service_node_proto_msgTypes[67]
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UpdateNodeDDoSProtectionRequest) String() string {
|
|
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (*UpdateNodeDDoSProtectionRequest) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UpdateNodeDDoSProtectionRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
mi := &file_service_node_proto_msgTypes[67]
|
|
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use UpdateNodeDDoSProtectionRequest.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*UpdateNodeDDoSProtectionRequest) Descriptor() ([]byte, []int) {
|
|
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{67}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UpdateNodeDDoSProtectionRequest) GetNodeId() int64 {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.NodeId
|
|
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UpdateNodeDDoSProtectionRequest) GetDdosProtectionJSON() []byte {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.DdosProtectionJSON
|
|
|
|
|
|
}
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2022-09-16 19:34:24 +08:00
|
|
|
|
// 取得节点的服务全局配置
|
|
|
|
|
|
type FindNodeGlobalServerConfigRequest struct {
|
2022-05-18 21:02:58 +08:00
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
|
|
|
|
NodeId int64 `protobuf:"varint,1,opt,name=nodeId,proto3" json:"nodeId,omitempty"`
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2022-09-16 19:34:24 +08:00
|
|
|
|
func (x *FindNodeGlobalServerConfigRequest) Reset() {
|
|
|
|
|
|
*x = FindNodeGlobalServerConfigRequest{}
|
2022-05-18 21:02:58 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled {
|
|
|
|
|
|
mi := &file_service_node_proto_msgTypes[68]
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2022-09-16 19:34:24 +08:00
|
|
|
|
func (x *FindNodeGlobalServerConfigRequest) String() string {
|
2022-05-18 21:02:58 +08:00
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2022-09-16 19:34:24 +08:00
|
|
|
|
func (*FindNodeGlobalServerConfigRequest) ProtoMessage() {}
|
2022-05-18 21:02:58 +08:00
|
|
|
|
|
2022-09-16 19:34:24 +08:00
|
|
|
|
func (x *FindNodeGlobalServerConfigRequest) ProtoReflect() protoreflect.Message {
|
2022-05-18 21:02:58 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[68]
|
|
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2022-09-16 19:34:24 +08:00
|
|
|
|
// Deprecated: Use FindNodeGlobalServerConfigRequest.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*FindNodeGlobalServerConfigRequest) Descriptor() ([]byte, []int) {
|
2022-05-18 21:02:58 +08:00
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{68}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2022-09-16 19:34:24 +08:00
|
|
|
|
func (x *FindNodeGlobalServerConfigRequest) GetNodeId() int64 {
|
2022-05-18 21:02:58 +08:00
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.NodeId
|
|
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2022-09-16 19:34:24 +08:00
|
|
|
|
type FindNodeGlobalServerConfigResponse struct {
|
2022-05-18 21:02:58 +08:00
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
2022-09-16 19:34:24 +08:00
|
|
|
|
GlobalServerConfigJSON []byte `protobuf:"bytes,1,opt,name=globalServerConfigJSON,proto3" json:"globalServerConfigJSON,omitempty"`
|
2022-05-18 21:02:58 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2022-09-16 19:34:24 +08:00
|
|
|
|
func (x *FindNodeGlobalServerConfigResponse) Reset() {
|
|
|
|
|
|
*x = FindNodeGlobalServerConfigResponse{}
|
2022-05-18 21:02:58 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled {
|
|
|
|
|
|
mi := &file_service_node_proto_msgTypes[69]
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2022-09-16 19:34:24 +08:00
|
|
|
|
func (x *FindNodeGlobalServerConfigResponse) String() string {
|
2022-05-18 21:02:58 +08:00
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2022-09-16 19:34:24 +08:00
|
|
|
|
func (*FindNodeGlobalServerConfigResponse) ProtoMessage() {}
|
2022-05-18 21:02:58 +08:00
|
|
|
|
|
2022-09-16 19:34:24 +08:00
|
|
|
|
func (x *FindNodeGlobalServerConfigResponse) ProtoReflect() protoreflect.Message {
|
2022-05-18 21:02:58 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[69]
|
|
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2022-09-16 19:34:24 +08:00
|
|
|
|
// Deprecated: Use FindNodeGlobalServerConfigResponse.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*FindNodeGlobalServerConfigResponse) Descriptor() ([]byte, []int) {
|
2022-05-18 21:02:58 +08:00
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{69}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2022-09-16 19:34:24 +08:00
|
|
|
|
func (x *FindNodeGlobalServerConfigResponse) GetGlobalServerConfigJSON() []byte {
|
2022-05-18 21:02:58 +08:00
|
|
|
|
if x != nil {
|
2022-09-16 19:34:24 +08:00
|
|
|
|
return x.GlobalServerConfigJSON
|
2022-05-18 21:02:58 +08:00
|
|
|
|
}
|
2022-09-16 19:34:24 +08:00
|
|
|
|
return nil
|
2022-05-18 21:02:58 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2022-09-16 19:34:24 +08:00
|
|
|
|
// 取得节点的配置概要信息
|
|
|
|
|
|
type FindEnabledNodeConfigInfoRequest struct {
|
2022-09-16 18:41:10 +08:00
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
|
|
|
|
NodeId int64 `protobuf:"varint,1,opt,name=nodeId,proto3" json:"nodeId,omitempty"`
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2022-09-16 19:34:24 +08:00
|
|
|
|
func (x *FindEnabledNodeConfigInfoRequest) Reset() {
|
|
|
|
|
|
*x = FindEnabledNodeConfigInfoRequest{}
|
2022-09-16 18:41:10 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled {
|
|
|
|
|
|
mi := &file_service_node_proto_msgTypes[70]
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2022-09-16 19:34:24 +08:00
|
|
|
|
func (x *FindEnabledNodeConfigInfoRequest) String() string {
|
2022-09-16 18:41:10 +08:00
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2022-09-16 19:34:24 +08:00
|
|
|
|
func (*FindEnabledNodeConfigInfoRequest) ProtoMessage() {}
|
2022-09-16 18:41:10 +08:00
|
|
|
|
|
2022-09-16 19:34:24 +08:00
|
|
|
|
func (x *FindEnabledNodeConfigInfoRequest) ProtoReflect() protoreflect.Message {
|
2022-09-16 18:41:10 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[70]
|
|
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2022-09-16 19:34:24 +08:00
|
|
|
|
// Deprecated: Use FindEnabledNodeConfigInfoRequest.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*FindEnabledNodeConfigInfoRequest) Descriptor() ([]byte, []int) {
|
2022-09-16 18:41:10 +08:00
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{70}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2022-09-16 19:34:24 +08:00
|
|
|
|
func (x *FindEnabledNodeConfigInfoRequest) GetNodeId() int64 {
|
2022-09-16 18:41:10 +08:00
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.NodeId
|
|
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2022-09-16 19:34:24 +08:00
|
|
|
|
type FindEnabledNodeConfigInfoResponse struct {
|
2022-09-16 18:41:10 +08:00
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
2023-05-17 18:42:35 +08:00
|
|
|
|
HasDNSInfo bool `protobuf:"varint,1,opt,name=hasDNSInfo,proto3" json:"hasDNSInfo,omitempty"` // 是否有DNS设置
|
|
|
|
|
|
HasCacheInfo bool `protobuf:"varint,2,opt,name=hasCacheInfo,proto3" json:"hasCacheInfo,omitempty"` // 是否有缓存设置
|
|
|
|
|
|
HasThresholds bool `protobuf:"varint,3,opt,name=hasThresholds,proto3" json:"hasThresholds,omitempty"` // 是否有阈值设置
|
|
|
|
|
|
HasSSH bool `protobuf:"varint,4,opt,name=hasSSH,proto3" json:"hasSSH,omitempty"` // 是否有SSH设置
|
|
|
|
|
|
HasSystemSettings bool `protobuf:"varint,5,opt,name=hasSystemSettings,proto3" json:"hasSystemSettings,omitempty"` // 是否有系统设置
|
|
|
|
|
|
HasDDoSProtection bool `protobuf:"varint,6,opt,name=hasDDoSProtection,proto3" json:"hasDDoSProtection,omitempty"` // 是否有DDoS防护设置
|
|
|
|
|
|
HasScheduleSettings bool `protobuf:"varint,7,opt,name=hasScheduleSettings,proto3" json:"hasScheduleSettings,omitempty"` // 是否有调度设置
|
2022-09-16 18:41:10 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2022-09-16 19:34:24 +08:00
|
|
|
|
func (x *FindEnabledNodeConfigInfoResponse) Reset() {
|
|
|
|
|
|
*x = FindEnabledNodeConfigInfoResponse{}
|
2022-09-16 18:41:10 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled {
|
|
|
|
|
|
mi := &file_service_node_proto_msgTypes[71]
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2022-09-16 19:34:24 +08:00
|
|
|
|
func (x *FindEnabledNodeConfigInfoResponse) String() string {
|
2022-09-16 18:41:10 +08:00
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2022-09-16 19:34:24 +08:00
|
|
|
|
func (*FindEnabledNodeConfigInfoResponse) ProtoMessage() {}
|
2022-09-16 18:41:10 +08:00
|
|
|
|
|
2022-09-16 19:34:24 +08:00
|
|
|
|
func (x *FindEnabledNodeConfigInfoResponse) ProtoReflect() protoreflect.Message {
|
2022-09-16 18:41:10 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[71]
|
|
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2022-09-16 19:34:24 +08:00
|
|
|
|
// Deprecated: Use FindEnabledNodeConfigInfoResponse.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*FindEnabledNodeConfigInfoResponse) Descriptor() ([]byte, []int) {
|
2022-09-16 18:41:10 +08:00
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{71}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2022-09-16 19:34:24 +08:00
|
|
|
|
func (x *FindEnabledNodeConfigInfoResponse) GetHasDNSInfo() bool {
|
2022-09-16 18:41:10 +08:00
|
|
|
|
if x != nil {
|
2022-09-16 19:34:24 +08:00
|
|
|
|
return x.HasDNSInfo
|
2022-09-16 18:41:10 +08:00
|
|
|
|
}
|
2022-09-16 19:34:24 +08:00
|
|
|
|
return false
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindEnabledNodeConfigInfoResponse) GetHasCacheInfo() bool {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.HasCacheInfo
|
|
|
|
|
|
}
|
|
|
|
|
|
return false
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindEnabledNodeConfigInfoResponse) GetHasThresholds() bool {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.HasThresholds
|
|
|
|
|
|
}
|
|
|
|
|
|
return false
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindEnabledNodeConfigInfoResponse) GetHasSSH() bool {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.HasSSH
|
|
|
|
|
|
}
|
|
|
|
|
|
return false
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindEnabledNodeConfigInfoResponse) GetHasSystemSettings() bool {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.HasSystemSettings
|
|
|
|
|
|
}
|
|
|
|
|
|
return false
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindEnabledNodeConfigInfoResponse) GetHasDDoSProtection() bool {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.HasDDoSProtection
|
|
|
|
|
|
}
|
|
|
|
|
|
return false
|
2022-09-16 18:41:10 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2023-05-17 18:42:35 +08:00
|
|
|
|
func (x *FindEnabledNodeConfigInfoResponse) GetHasScheduleSettings() bool {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.HasScheduleSettings
|
|
|
|
|
|
}
|
|
|
|
|
|
return false
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2022-10-20 15:14:22 +08:00
|
|
|
|
// 查找节点区域信息数量
|
|
|
|
|
|
type CountAllNodeRegionInfoRequest struct {
|
|
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
|
|
|
|
NodeRegionId int64 `protobuf:"varint,1,opt,name=nodeRegionId,proto3" json:"nodeRegionId,omitempty"` // 区域ID,可选
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *CountAllNodeRegionInfoRequest) Reset() {
|
|
|
|
|
|
*x = CountAllNodeRegionInfoRequest{}
|
|
|
|
|
|
if protoimpl.UnsafeEnabled {
|
|
|
|
|
|
mi := &file_service_node_proto_msgTypes[72]
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *CountAllNodeRegionInfoRequest) String() string {
|
|
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (*CountAllNodeRegionInfoRequest) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *CountAllNodeRegionInfoRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
mi := &file_service_node_proto_msgTypes[72]
|
|
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use CountAllNodeRegionInfoRequest.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*CountAllNodeRegionInfoRequest) Descriptor() ([]byte, []int) {
|
|
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{72}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *CountAllNodeRegionInfoRequest) GetNodeRegionId() int64 {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.NodeRegionId
|
|
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 列出单页节点区域信息
|
|
|
|
|
|
type ListNodeRegionInfoRequest struct {
|
|
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
|
|
|
|
NodeRegionId int64 `protobuf:"varint,1,opt,name=nodeRegionId,proto3" json:"nodeRegionId,omitempty"` // 区域ID,可选
|
|
|
|
|
|
Offset int64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset,omitempty"`
|
|
|
|
|
|
Size int64 `protobuf:"varint,3,opt,name=size,proto3" json:"size,omitempty"`
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *ListNodeRegionInfoRequest) Reset() {
|
|
|
|
|
|
*x = ListNodeRegionInfoRequest{}
|
|
|
|
|
|
if protoimpl.UnsafeEnabled {
|
|
|
|
|
|
mi := &file_service_node_proto_msgTypes[73]
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *ListNodeRegionInfoRequest) String() string {
|
|
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (*ListNodeRegionInfoRequest) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *ListNodeRegionInfoRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
mi := &file_service_node_proto_msgTypes[73]
|
|
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use ListNodeRegionInfoRequest.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*ListNodeRegionInfoRequest) Descriptor() ([]byte, []int) {
|
|
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{73}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *ListNodeRegionInfoRequest) GetNodeRegionId() int64 {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.NodeRegionId
|
|
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *ListNodeRegionInfoRequest) GetOffset() int64 {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.Offset
|
|
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *ListNodeRegionInfoRequest) GetSize() int64 {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.Size
|
|
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
type ListNodeRegionInfoResponse struct {
|
|
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
|
|
|
|
InfoList []*ListNodeRegionInfoResponse_Info `protobuf:"bytes,1,rep,name=infoList,proto3" json:"infoList,omitempty"`
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *ListNodeRegionInfoResponse) Reset() {
|
|
|
|
|
|
*x = ListNodeRegionInfoResponse{}
|
|
|
|
|
|
if protoimpl.UnsafeEnabled {
|
|
|
|
|
|
mi := &file_service_node_proto_msgTypes[74]
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *ListNodeRegionInfoResponse) String() string {
|
|
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (*ListNodeRegionInfoResponse) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *ListNodeRegionInfoResponse) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
mi := &file_service_node_proto_msgTypes[74]
|
|
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use ListNodeRegionInfoResponse.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*ListNodeRegionInfoResponse) Descriptor() ([]byte, []int) {
|
|
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{74}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *ListNodeRegionInfoResponse) GetInfoList() []*ListNodeRegionInfoResponse_Info {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.InfoList
|
|
|
|
|
|
}
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 修改节点区域信息
|
|
|
|
|
|
type UpdateNodeRegionInfoRequest struct {
|
|
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
|
|
|
|
NodeId int64 `protobuf:"varint,1,opt,name=nodeId,proto3" json:"nodeId,omitempty"`
|
|
|
|
|
|
NodeRegionId int64 `protobuf:"varint,2,opt,name=nodeRegionId,proto3" json:"nodeRegionId,omitempty"`
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UpdateNodeRegionInfoRequest) Reset() {
|
|
|
|
|
|
*x = UpdateNodeRegionInfoRequest{}
|
|
|
|
|
|
if protoimpl.UnsafeEnabled {
|
|
|
|
|
|
mi := &file_service_node_proto_msgTypes[75]
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UpdateNodeRegionInfoRequest) String() string {
|
|
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (*UpdateNodeRegionInfoRequest) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UpdateNodeRegionInfoRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
mi := &file_service_node_proto_msgTypes[75]
|
|
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use UpdateNodeRegionInfoRequest.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*UpdateNodeRegionInfoRequest) Descriptor() ([]byte, []int) {
|
|
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{75}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UpdateNodeRegionInfoRequest) GetNodeId() int64 {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.NodeId
|
|
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UpdateNodeRegionInfoRequest) GetNodeRegionId() int64 {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.NodeRegionId
|
|
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2022-11-21 19:55:09 +08:00
|
|
|
|
// 查找单个节点的API相关配置
|
|
|
|
|
|
type FindNodeAPIConfigRequest struct {
|
|
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
|
|
|
|
NodeId int64 `protobuf:"varint,1,opt,name=nodeId,proto3" json:"nodeId,omitempty"`
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeAPIConfigRequest) Reset() {
|
|
|
|
|
|
*x = FindNodeAPIConfigRequest{}
|
|
|
|
|
|
if protoimpl.UnsafeEnabled {
|
|
|
|
|
|
mi := &file_service_node_proto_msgTypes[76]
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeAPIConfigRequest) String() string {
|
|
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (*FindNodeAPIConfigRequest) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeAPIConfigRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
mi := &file_service_node_proto_msgTypes[76]
|
|
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use FindNodeAPIConfigRequest.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*FindNodeAPIConfigRequest) Descriptor() ([]byte, []int) {
|
|
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{76}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeAPIConfigRequest) GetNodeId() int64 {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.NodeId
|
|
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
type FindNodeAPIConfigResponse struct {
|
|
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
|
|
|
|
ApiNodeAddrsJSON []byte `protobuf:"bytes,1,opt,name=apiNodeAddrsJSON,proto3" json:"apiNodeAddrsJSON,omitempty"`
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeAPIConfigResponse) Reset() {
|
|
|
|
|
|
*x = FindNodeAPIConfigResponse{}
|
|
|
|
|
|
if protoimpl.UnsafeEnabled {
|
|
|
|
|
|
mi := &file_service_node_proto_msgTypes[77]
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeAPIConfigResponse) String() string {
|
|
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (*FindNodeAPIConfigResponse) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeAPIConfigResponse) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
mi := &file_service_node_proto_msgTypes[77]
|
|
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use FindNodeAPIConfigResponse.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*FindNodeAPIConfigResponse) Descriptor() ([]byte, []int) {
|
|
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{77}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeAPIConfigResponse) GetApiNodeAddrsJSON() []byte {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.ApiNodeAddrsJSON
|
|
|
|
|
|
}
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 修改某个节点的API相关配置
|
|
|
|
|
|
type UpdateNodeAPIConfigRequest struct {
|
|
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
|
|
|
|
NodeId int64 `protobuf:"varint,1,opt,name=nodeId,proto3" json:"nodeId,omitempty"`
|
|
|
|
|
|
ApiNodeAddrsJSON []byte `protobuf:"bytes,2,opt,name=apiNodeAddrsJSON,proto3" json:"apiNodeAddrsJSON,omitempty"`
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UpdateNodeAPIConfigRequest) Reset() {
|
|
|
|
|
|
*x = UpdateNodeAPIConfigRequest{}
|
|
|
|
|
|
if protoimpl.UnsafeEnabled {
|
|
|
|
|
|
mi := &file_service_node_proto_msgTypes[78]
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UpdateNodeAPIConfigRequest) String() string {
|
|
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (*UpdateNodeAPIConfigRequest) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UpdateNodeAPIConfigRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
mi := &file_service_node_proto_msgTypes[78]
|
|
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use UpdateNodeAPIConfigRequest.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*UpdateNodeAPIConfigRequest) Descriptor() ([]byte, []int) {
|
|
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{78}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UpdateNodeAPIConfigRequest) GetNodeId() int64 {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.NodeId
|
|
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UpdateNodeAPIConfigRequest) GetApiNodeAddrsJSON() []byte {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.ApiNodeAddrsJSON
|
|
|
|
|
|
}
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2023-04-03 15:59:45 +08:00
|
|
|
|
// 查找节点的UAM策略
|
|
|
|
|
|
type FindNodeUAMPoliciesRequest struct {
|
|
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeUAMPoliciesRequest) Reset() {
|
|
|
|
|
|
*x = FindNodeUAMPoliciesRequest{}
|
|
|
|
|
|
if protoimpl.UnsafeEnabled {
|
|
|
|
|
|
mi := &file_service_node_proto_msgTypes[79]
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeUAMPoliciesRequest) String() string {
|
|
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (*FindNodeUAMPoliciesRequest) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeUAMPoliciesRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
mi := &file_service_node_proto_msgTypes[79]
|
|
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use FindNodeUAMPoliciesRequest.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*FindNodeUAMPoliciesRequest) Descriptor() ([]byte, []int) {
|
|
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{79}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
type FindNodeUAMPoliciesResponse struct {
|
|
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
|
|
|
|
UamPolicies []*FindNodeUAMPoliciesResponse_UAMPolicy `protobuf:"bytes,1,rep,name=uamPolicies,proto3" json:"uamPolicies,omitempty"` // UAM策略列表
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeUAMPoliciesResponse) Reset() {
|
|
|
|
|
|
*x = FindNodeUAMPoliciesResponse{}
|
|
|
|
|
|
if protoimpl.UnsafeEnabled {
|
|
|
|
|
|
mi := &file_service_node_proto_msgTypes[80]
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeUAMPoliciesResponse) String() string {
|
|
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (*FindNodeUAMPoliciesResponse) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeUAMPoliciesResponse) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
mi := &file_service_node_proto_msgTypes[80]
|
|
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use FindNodeUAMPoliciesResponse.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*FindNodeUAMPoliciesResponse) Descriptor() ([]byte, []int) {
|
|
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{80}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeUAMPoliciesResponse) GetUamPolicies() []*FindNodeUAMPoliciesResponse_UAMPolicy {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.UamPolicies
|
|
|
|
|
|
}
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2023-05-23 19:16:09 +08:00
|
|
|
|
// 查找节点的HTTP CC策略
|
|
|
|
|
|
type FindNodeHTTPCCPoliciesRequest struct {
|
|
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeHTTPCCPoliciesRequest) Reset() {
|
|
|
|
|
|
*x = FindNodeHTTPCCPoliciesRequest{}
|
|
|
|
|
|
if protoimpl.UnsafeEnabled {
|
|
|
|
|
|
mi := &file_service_node_proto_msgTypes[81]
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeHTTPCCPoliciesRequest) String() string {
|
|
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (*FindNodeHTTPCCPoliciesRequest) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeHTTPCCPoliciesRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
mi := &file_service_node_proto_msgTypes[81]
|
|
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use FindNodeHTTPCCPoliciesRequest.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*FindNodeHTTPCCPoliciesRequest) Descriptor() ([]byte, []int) {
|
|
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{81}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
type FindNodeHTTPCCPoliciesResponse struct {
|
|
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
|
|
|
|
HttpCCPolicies []*FindNodeHTTPCCPoliciesResponse_HTTPCCPolicy `protobuf:"bytes,1,rep,name=httpCCPolicies,proto3" json:"httpCCPolicies,omitempty"` // HTTP CC策略列表
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeHTTPCCPoliciesResponse) Reset() {
|
|
|
|
|
|
*x = FindNodeHTTPCCPoliciesResponse{}
|
|
|
|
|
|
if protoimpl.UnsafeEnabled {
|
|
|
|
|
|
mi := &file_service_node_proto_msgTypes[82]
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeHTTPCCPoliciesResponse) String() string {
|
|
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (*FindNodeHTTPCCPoliciesResponse) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeHTTPCCPoliciesResponse) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
mi := &file_service_node_proto_msgTypes[82]
|
|
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use FindNodeHTTPCCPoliciesResponse.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*FindNodeHTTPCCPoliciesResponse) Descriptor() ([]byte, []int) {
|
|
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{82}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeHTTPCCPoliciesResponse) GetHttpCCPolicies() []*FindNodeHTTPCCPoliciesResponse_HTTPCCPolicy {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.HttpCCPolicies
|
|
|
|
|
|
}
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2023-06-01 17:48:01 +08:00
|
|
|
|
// 查找节点的HTTP3策略
|
|
|
|
|
|
type FindNodeHTTP3PoliciesRequest struct {
|
|
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeHTTP3PoliciesRequest) Reset() {
|
|
|
|
|
|
*x = FindNodeHTTP3PoliciesRequest{}
|
|
|
|
|
|
if protoimpl.UnsafeEnabled {
|
|
|
|
|
|
mi := &file_service_node_proto_msgTypes[83]
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeHTTP3PoliciesRequest) String() string {
|
|
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (*FindNodeHTTP3PoliciesRequest) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeHTTP3PoliciesRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
mi := &file_service_node_proto_msgTypes[83]
|
|
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use FindNodeHTTP3PoliciesRequest.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*FindNodeHTTP3PoliciesRequest) Descriptor() ([]byte, []int) {
|
|
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{83}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
type FindNodeHTTP3PoliciesResponse struct {
|
|
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
|
|
|
|
Http3Policies []*FindNodeHTTP3PoliciesResponse_HTTP3Policy `protobuf:"bytes,1,rep,name=http3Policies,proto3" json:"http3Policies,omitempty"` // HTTP3策略列表
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeHTTP3PoliciesResponse) Reset() {
|
|
|
|
|
|
*x = FindNodeHTTP3PoliciesResponse{}
|
|
|
|
|
|
if protoimpl.UnsafeEnabled {
|
|
|
|
|
|
mi := &file_service_node_proto_msgTypes[84]
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeHTTP3PoliciesResponse) String() string {
|
|
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (*FindNodeHTTP3PoliciesResponse) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeHTTP3PoliciesResponse) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
mi := &file_service_node_proto_msgTypes[84]
|
|
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use FindNodeHTTP3PoliciesResponse.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*FindNodeHTTP3PoliciesResponse) Descriptor() ([]byte, []int) {
|
|
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{84}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeHTTP3PoliciesResponse) GetHttp3Policies() []*FindNodeHTTP3PoliciesResponse_HTTP3Policy {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.Http3Policies
|
|
|
|
|
|
}
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2023-05-22 17:30:08 +08:00
|
|
|
|
// 查找节点的自定义页面策略
|
|
|
|
|
|
type FindNodeHTTPPagesPoliciesRequest struct {
|
|
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeHTTPPagesPoliciesRequest) Reset() {
|
|
|
|
|
|
*x = FindNodeHTTPPagesPoliciesRequest{}
|
|
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2023-06-01 17:48:01 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[85]
|
2023-05-22 17:30:08 +08:00
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeHTTPPagesPoliciesRequest) String() string {
|
|
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (*FindNodeHTTPPagesPoliciesRequest) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeHTTPPagesPoliciesRequest) ProtoReflect() protoreflect.Message {
|
2023-06-01 17:48:01 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[85]
|
2023-05-22 17:30:08 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use FindNodeHTTPPagesPoliciesRequest.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*FindNodeHTTPPagesPoliciesRequest) Descriptor() ([]byte, []int) {
|
2023-06-01 17:48:01 +08:00
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{85}
|
2023-05-22 17:30:08 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
type FindNodeHTTPPagesPoliciesResponse struct {
|
|
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
|
|
|
|
HttpPagesPolicies []*FindNodeHTTPPagesPoliciesResponse_HTTPPagesPolicy `protobuf:"bytes,1,rep,name=httpPagesPolicies,proto3" json:"httpPagesPolicies,omitempty"` // 自定义页面策略列表
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeHTTPPagesPoliciesResponse) Reset() {
|
|
|
|
|
|
*x = FindNodeHTTPPagesPoliciesResponse{}
|
|
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2023-06-01 17:48:01 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[86]
|
2023-05-22 17:30:08 +08:00
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeHTTPPagesPoliciesResponse) String() string {
|
|
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (*FindNodeHTTPPagesPoliciesResponse) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeHTTPPagesPoliciesResponse) ProtoReflect() protoreflect.Message {
|
2023-06-01 17:48:01 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[86]
|
2023-05-22 17:30:08 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use FindNodeHTTPPagesPoliciesResponse.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*FindNodeHTTPPagesPoliciesResponse) Descriptor() ([]byte, []int) {
|
2023-06-01 17:48:01 +08:00
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{86}
|
2023-05-22 17:30:08 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeHTTPPagesPoliciesResponse) GetHttpPagesPolicies() []*FindNodeHTTPPagesPoliciesResponse_HTTPPagesPolicy {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.HttpPagesPolicies
|
|
|
|
|
|
}
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2023-05-17 18:42:35 +08:00
|
|
|
|
// 查找节点调度信息
|
|
|
|
|
|
type FindNodeScheduleInfoRequest struct {
|
|
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
|
|
|
|
NodeId int64 `protobuf:"varint,1,opt,name=nodeId,proto3" json:"nodeId,omitempty"` // 节点ID
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeScheduleInfoRequest) Reset() {
|
|
|
|
|
|
*x = FindNodeScheduleInfoRequest{}
|
|
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2023-06-01 17:48:01 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[87]
|
2023-05-17 18:42:35 +08:00
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeScheduleInfoRequest) String() string {
|
|
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (*FindNodeScheduleInfoRequest) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeScheduleInfoRequest) ProtoReflect() protoreflect.Message {
|
2023-06-01 17:48:01 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[87]
|
2023-05-17 18:42:35 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use FindNodeScheduleInfoRequest.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*FindNodeScheduleInfoRequest) Descriptor() ([]byte, []int) {
|
2023-06-01 17:48:01 +08:00
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{87}
|
2023-05-17 18:42:35 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeScheduleInfoRequest) GetNodeId() int64 {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.NodeId
|
|
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
type FindNodeScheduleInfoResponse struct {
|
|
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
|
|
|
|
ScheduleInfo *FindNodeScheduleInfoResponse_ScheduleInfo `protobuf:"bytes,1,opt,name=scheduleInfo,proto3" json:"scheduleInfo,omitempty"` // 调度信息
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeScheduleInfoResponse) Reset() {
|
|
|
|
|
|
*x = FindNodeScheduleInfoResponse{}
|
|
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2023-06-01 17:48:01 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[88]
|
2023-05-17 18:42:35 +08:00
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeScheduleInfoResponse) String() string {
|
|
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (*FindNodeScheduleInfoResponse) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeScheduleInfoResponse) ProtoReflect() protoreflect.Message {
|
2023-06-01 17:48:01 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[88]
|
2023-05-17 18:42:35 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use FindNodeScheduleInfoResponse.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*FindNodeScheduleInfoResponse) Descriptor() ([]byte, []int) {
|
2023-06-01 17:48:01 +08:00
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{88}
|
2023-05-17 18:42:35 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeScheduleInfoResponse) GetScheduleInfo() *FindNodeScheduleInfoResponse_ScheduleInfo {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.ScheduleInfo
|
|
|
|
|
|
}
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 修改节点调度信息
|
|
|
|
|
|
type UpdateNodeScheduleInfoRequest struct {
|
|
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
|
|
|
|
NodeId int64 `protobuf:"varint,1,opt,name=nodeId,proto3" json:"nodeId,omitempty"` // 节点ID
|
|
|
|
|
|
OfflineDay string `protobuf:"bytes,2,opt,name=offlineDay,proto3" json:"offlineDay,omitempty"` // 下线日期,格式YYYYMMDD
|
|
|
|
|
|
IsBackupForCluster bool `protobuf:"varint,3,opt,name=isBackupForCluster,proto3" json:"isBackupForCluster,omitempty"` // 是否为集群备份节点
|
|
|
|
|
|
IsBackupForGroup bool `protobuf:"varint,4,opt,name=isBackupForGroup,proto3" json:"isBackupForGroup,omitempty"` // 是否为分组备份节点
|
|
|
|
|
|
BackupIPs []string `protobuf:"bytes,5,rep,name=backupIPs,proto3" json:"backupIPs,omitempty"` // 备用IP
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UpdateNodeScheduleInfoRequest) Reset() {
|
|
|
|
|
|
*x = UpdateNodeScheduleInfoRequest{}
|
|
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2023-06-01 17:48:01 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[89]
|
2023-05-17 18:42:35 +08:00
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UpdateNodeScheduleInfoRequest) String() string {
|
|
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (*UpdateNodeScheduleInfoRequest) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UpdateNodeScheduleInfoRequest) ProtoReflect() protoreflect.Message {
|
2023-06-01 17:48:01 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[89]
|
2023-05-17 18:42:35 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use UpdateNodeScheduleInfoRequest.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*UpdateNodeScheduleInfoRequest) Descriptor() ([]byte, []int) {
|
2023-06-01 17:48:01 +08:00
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{89}
|
2023-05-17 18:42:35 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UpdateNodeScheduleInfoRequest) GetNodeId() int64 {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.NodeId
|
|
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UpdateNodeScheduleInfoRequest) GetOfflineDay() string {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.OfflineDay
|
|
|
|
|
|
}
|
|
|
|
|
|
return ""
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UpdateNodeScheduleInfoRequest) GetIsBackupForCluster() bool {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.IsBackupForCluster
|
|
|
|
|
|
}
|
|
|
|
|
|
return false
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UpdateNodeScheduleInfoRequest) GetIsBackupForGroup() bool {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.IsBackupForGroup
|
|
|
|
|
|
}
|
|
|
|
|
|
return false
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UpdateNodeScheduleInfoRequest) GetBackupIPs() []string {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.BackupIPs
|
|
|
|
|
|
}
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 重置节点动作状态
|
|
|
|
|
|
type ResetNodeActionStatusRequest struct {
|
|
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
|
|
|
|
NodeId int64 `protobuf:"varint,1,opt,name=nodeId,proto3" json:"nodeId,omitempty"` // 节点ID
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *ResetNodeActionStatusRequest) Reset() {
|
|
|
|
|
|
*x = ResetNodeActionStatusRequest{}
|
|
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2023-06-01 17:48:01 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[90]
|
2023-05-17 18:42:35 +08:00
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *ResetNodeActionStatusRequest) String() string {
|
|
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (*ResetNodeActionStatusRequest) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *ResetNodeActionStatusRequest) ProtoReflect() protoreflect.Message {
|
2023-06-01 17:48:01 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[90]
|
2023-05-17 18:42:35 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use ResetNodeActionStatusRequest.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*ResetNodeActionStatusRequest) Descriptor() ([]byte, []int) {
|
2023-06-01 17:48:01 +08:00
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{90}
|
2023-05-17 18:42:35 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *ResetNodeActionStatusRequest) GetNodeId() int64 {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.NodeId
|
|
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2023-05-19 11:12:09 +08:00
|
|
|
|
// 查找集群的节点调度信息
|
|
|
|
|
|
type FindAllNodeScheduleInfoWithNodeClusterIdRequest struct {
|
|
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
|
|
|
|
NodeClusterId int64 `protobuf:"varint,1,opt,name=nodeClusterId,proto3" json:"nodeClusterId,omitempty"` // 集群ID
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindAllNodeScheduleInfoWithNodeClusterIdRequest) Reset() {
|
|
|
|
|
|
*x = FindAllNodeScheduleInfoWithNodeClusterIdRequest{}
|
|
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2023-06-01 17:48:01 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[91]
|
2023-05-19 11:12:09 +08:00
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindAllNodeScheduleInfoWithNodeClusterIdRequest) String() string {
|
|
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (*FindAllNodeScheduleInfoWithNodeClusterIdRequest) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindAllNodeScheduleInfoWithNodeClusterIdRequest) ProtoReflect() protoreflect.Message {
|
2023-06-01 17:48:01 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[91]
|
2023-05-19 11:12:09 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use FindAllNodeScheduleInfoWithNodeClusterIdRequest.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*FindAllNodeScheduleInfoWithNodeClusterIdRequest) Descriptor() ([]byte, []int) {
|
2023-06-01 17:48:01 +08:00
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{91}
|
2023-05-19 11:12:09 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindAllNodeScheduleInfoWithNodeClusterIdRequest) GetNodeClusterId() int64 {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.NodeClusterId
|
|
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
type FindAllNodeScheduleInfoWithNodeClusterIdResponse struct {
|
|
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
|
|
|
|
Nodes []*FindAllNodeScheduleInfoWithNodeClusterIdResponse_ScheduleInfo `protobuf:"bytes,1,rep,name=nodes,proto3" json:"nodes,omitempty"` // 调动信息列表
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindAllNodeScheduleInfoWithNodeClusterIdResponse) Reset() {
|
|
|
|
|
|
*x = FindAllNodeScheduleInfoWithNodeClusterIdResponse{}
|
|
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2023-06-01 17:48:01 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[92]
|
2023-05-19 11:12:09 +08:00
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindAllNodeScheduleInfoWithNodeClusterIdResponse) String() string {
|
|
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (*FindAllNodeScheduleInfoWithNodeClusterIdResponse) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindAllNodeScheduleInfoWithNodeClusterIdResponse) ProtoReflect() protoreflect.Message {
|
2023-06-01 17:48:01 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[92]
|
2023-05-19 11:12:09 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use FindAllNodeScheduleInfoWithNodeClusterIdResponse.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*FindAllNodeScheduleInfoWithNodeClusterIdResponse) Descriptor() ([]byte, []int) {
|
2023-06-01 17:48:01 +08:00
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{92}
|
2023-05-19 11:12:09 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindAllNodeScheduleInfoWithNodeClusterIdResponse) GetNodes() []*FindAllNodeScheduleInfoWithNodeClusterIdResponse_ScheduleInfo {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.Nodes
|
|
|
|
|
|
}
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 同步动作设置到分组
|
|
|
|
|
|
type CopyNodeActionsToNodeGroupRequest struct {
|
|
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
2023-07-24 09:56:49 +08:00
|
|
|
|
NodeId int64 `protobuf:"varint,1,opt,name=nodeId,proto3" json:"nodeId,omitempty"` // 节点ID
|
2023-05-19 11:12:09 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *CopyNodeActionsToNodeGroupRequest) Reset() {
|
|
|
|
|
|
*x = CopyNodeActionsToNodeGroupRequest{}
|
|
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2023-06-01 17:48:01 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[93]
|
2023-05-19 11:12:09 +08:00
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *CopyNodeActionsToNodeGroupRequest) String() string {
|
|
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (*CopyNodeActionsToNodeGroupRequest) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *CopyNodeActionsToNodeGroupRequest) ProtoReflect() protoreflect.Message {
|
2023-06-01 17:48:01 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[93]
|
2023-05-19 11:12:09 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use CopyNodeActionsToNodeGroupRequest.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*CopyNodeActionsToNodeGroupRequest) Descriptor() ([]byte, []int) {
|
2023-06-01 17:48:01 +08:00
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{93}
|
2023-05-19 11:12:09 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *CopyNodeActionsToNodeGroupRequest) GetNodeId() int64 {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.NodeId
|
|
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 同步动作设置到集群
|
|
|
|
|
|
type CopyNodeActionsToNodeClusterRequest struct {
|
|
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
2023-07-24 09:56:49 +08:00
|
|
|
|
NodeId int64 `protobuf:"varint,1,opt,name=nodeId,proto3" json:"nodeId,omitempty"` // 节点ID
|
2023-05-19 11:12:09 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *CopyNodeActionsToNodeClusterRequest) Reset() {
|
|
|
|
|
|
*x = CopyNodeActionsToNodeClusterRequest{}
|
|
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2023-06-01 17:48:01 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[94]
|
2023-05-19 11:12:09 +08:00
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *CopyNodeActionsToNodeClusterRequest) String() string {
|
|
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (*CopyNodeActionsToNodeClusterRequest) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *CopyNodeActionsToNodeClusterRequest) ProtoReflect() protoreflect.Message {
|
2023-06-01 17:48:01 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[94]
|
2023-05-19 11:12:09 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use CopyNodeActionsToNodeClusterRequest.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*CopyNodeActionsToNodeClusterRequest) Descriptor() ([]byte, []int) {
|
2023-06-01 17:48:01 +08:00
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{94}
|
2023-05-19 11:12:09 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *CopyNodeActionsToNodeClusterRequest) GetNodeId() int64 {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.NodeId
|
|
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2023-07-24 09:56:49 +08:00
|
|
|
|
// 查找节点的TOA配置
|
|
|
|
|
|
type FindNodeTOAConfigRequest struct {
|
|
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeTOAConfigRequest) Reset() {
|
|
|
|
|
|
*x = FindNodeTOAConfigRequest{}
|
|
|
|
|
|
if protoimpl.UnsafeEnabled {
|
|
|
|
|
|
mi := &file_service_node_proto_msgTypes[95]
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeTOAConfigRequest) String() string {
|
|
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (*FindNodeTOAConfigRequest) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeTOAConfigRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
mi := &file_service_node_proto_msgTypes[95]
|
|
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use FindNodeTOAConfigRequest.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*FindNodeTOAConfigRequest) Descriptor() ([]byte, []int) {
|
|
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{95}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
type FindNodeTOAConfigResponse struct {
|
|
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
|
|
|
|
ToaJSON []byte `protobuf:"bytes,1,opt,name=toaJSON,proto3" json:"toaJSON,omitempty"` // TOA配置
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeTOAConfigResponse) Reset() {
|
|
|
|
|
|
*x = FindNodeTOAConfigResponse{}
|
|
|
|
|
|
if protoimpl.UnsafeEnabled {
|
|
|
|
|
|
mi := &file_service_node_proto_msgTypes[96]
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeTOAConfigResponse) String() string {
|
|
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (*FindNodeTOAConfigResponse) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeTOAConfigResponse) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
mi := &file_service_node_proto_msgTypes[96]
|
|
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use FindNodeTOAConfigResponse.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*FindNodeTOAConfigResponse) Descriptor() ([]byte, []int) {
|
|
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{96}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeTOAConfigResponse) GetToaJSON() []byte {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.ToaJSON
|
|
|
|
|
|
}
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
type FindAllUpgradeNodesWithNodeClusterIdResponse_NodeUpgrade struct {
|
2020-10-28 12:36:11 +08:00
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
|
|
|
|
Node *Node `protobuf:"bytes,1,opt,name=node,proto3" json:"node,omitempty"`
|
|
|
|
|
|
Os string `protobuf:"bytes,2,opt,name=os,proto3" json:"os,omitempty"`
|
|
|
|
|
|
Arch string `protobuf:"bytes,3,opt,name=arch,proto3" json:"arch,omitempty"`
|
|
|
|
|
|
OldVersion string `protobuf:"bytes,4,opt,name=oldVersion,proto3" json:"oldVersion,omitempty"`
|
|
|
|
|
|
NewVersion string `protobuf:"bytes,5,opt,name=newVersion,proto3" json:"newVersion,omitempty"`
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
func (x *FindAllUpgradeNodesWithNodeClusterIdResponse_NodeUpgrade) Reset() {
|
|
|
|
|
|
*x = FindAllUpgradeNodesWithNodeClusterIdResponse_NodeUpgrade{}
|
2020-10-28 12:36:11 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2023-07-24 09:56:49 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[97]
|
2020-10-28 12:36:11 +08:00
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
func (x *FindAllUpgradeNodesWithNodeClusterIdResponse_NodeUpgrade) String() string {
|
2020-10-28 12:36:11 +08:00
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
func (*FindAllUpgradeNodesWithNodeClusterIdResponse_NodeUpgrade) ProtoMessage() {}
|
2020-10-28 12:36:11 +08:00
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
func (x *FindAllUpgradeNodesWithNodeClusterIdResponse_NodeUpgrade) ProtoReflect() protoreflect.Message {
|
2023-07-24 09:56:49 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[97]
|
2020-10-28 12:36:11 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
// Deprecated: Use FindAllUpgradeNodesWithNodeClusterIdResponse_NodeUpgrade.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*FindAllUpgradeNodesWithNodeClusterIdResponse_NodeUpgrade) Descriptor() ([]byte, []int) {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{39, 0}
|
2020-10-28 12:36:11 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
func (x *FindAllUpgradeNodesWithNodeClusterIdResponse_NodeUpgrade) GetNode() *Node {
|
2020-10-28 12:36:11 +08:00
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.Node
|
|
|
|
|
|
}
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
func (x *FindAllUpgradeNodesWithNodeClusterIdResponse_NodeUpgrade) GetOs() string {
|
2020-10-28 12:36:11 +08:00
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.Os
|
|
|
|
|
|
}
|
|
|
|
|
|
return ""
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
func (x *FindAllUpgradeNodesWithNodeClusterIdResponse_NodeUpgrade) GetArch() string {
|
2020-10-28 12:36:11 +08:00
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.Arch
|
|
|
|
|
|
}
|
|
|
|
|
|
return ""
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
func (x *FindAllUpgradeNodesWithNodeClusterIdResponse_NodeUpgrade) GetOldVersion() string {
|
2020-10-28 12:36:11 +08:00
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.OldVersion
|
|
|
|
|
|
}
|
|
|
|
|
|
return ""
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-25 17:08:52 +08:00
|
|
|
|
func (x *FindAllUpgradeNodesWithNodeClusterIdResponse_NodeUpgrade) GetNewVersion() string {
|
2020-10-28 12:36:11 +08:00
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.NewVersion
|
|
|
|
|
|
}
|
|
|
|
|
|
return ""
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2022-10-20 15:14:22 +08:00
|
|
|
|
type ListNodeRegionInfoResponse_Info struct {
|
|
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
|
|
|
|
Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
|
|
|
|
|
|
Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
|
|
|
|
|
|
NodeRegion *NodeRegion `protobuf:"bytes,10,opt,name=nodeRegion,proto3" json:"nodeRegion,omitempty"`
|
|
|
|
|
|
NodeCluster *NodeCluster `protobuf:"bytes,11,opt,name=nodeCluster,proto3" json:"nodeCluster,omitempty"`
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *ListNodeRegionInfoResponse_Info) Reset() {
|
|
|
|
|
|
*x = ListNodeRegionInfoResponse_Info{}
|
|
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2023-07-24 09:56:49 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[98]
|
2022-10-20 15:14:22 +08:00
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *ListNodeRegionInfoResponse_Info) String() string {
|
|
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (*ListNodeRegionInfoResponse_Info) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *ListNodeRegionInfoResponse_Info) ProtoReflect() protoreflect.Message {
|
2023-07-24 09:56:49 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[98]
|
2022-10-20 15:14:22 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use ListNodeRegionInfoResponse_Info.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*ListNodeRegionInfoResponse_Info) Descriptor() ([]byte, []int) {
|
|
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{74, 0}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *ListNodeRegionInfoResponse_Info) GetId() int64 {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.Id
|
|
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *ListNodeRegionInfoResponse_Info) GetName() string {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.Name
|
|
|
|
|
|
}
|
|
|
|
|
|
return ""
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *ListNodeRegionInfoResponse_Info) GetNodeRegion() *NodeRegion {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.NodeRegion
|
|
|
|
|
|
}
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *ListNodeRegionInfoResponse_Info) GetNodeCluster() *NodeCluster {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.NodeCluster
|
|
|
|
|
|
}
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2023-04-03 15:59:45 +08:00
|
|
|
|
type FindNodeUAMPoliciesResponse_UAMPolicy struct {
|
|
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
|
|
|
|
NodeClusterId int64 `protobuf:"varint,1,opt,name=nodeClusterId,proto3" json:"nodeClusterId,omitempty"` // 集群ID
|
|
|
|
|
|
UamPolicyJSON []byte `protobuf:"bytes,2,opt,name=uamPolicyJSON,proto3" json:"uamPolicyJSON,omitempty"` // UAM策略配置
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeUAMPoliciesResponse_UAMPolicy) Reset() {
|
|
|
|
|
|
*x = FindNodeUAMPoliciesResponse_UAMPolicy{}
|
|
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2023-07-24 09:56:49 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[99]
|
2023-04-03 15:59:45 +08:00
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeUAMPoliciesResponse_UAMPolicy) String() string {
|
|
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (*FindNodeUAMPoliciesResponse_UAMPolicy) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeUAMPoliciesResponse_UAMPolicy) ProtoReflect() protoreflect.Message {
|
2023-07-24 09:56:49 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[99]
|
2023-04-03 15:59:45 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use FindNodeUAMPoliciesResponse_UAMPolicy.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*FindNodeUAMPoliciesResponse_UAMPolicy) Descriptor() ([]byte, []int) {
|
|
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{80, 0}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeUAMPoliciesResponse_UAMPolicy) GetNodeClusterId() int64 {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.NodeClusterId
|
|
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeUAMPoliciesResponse_UAMPolicy) GetUamPolicyJSON() []byte {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.UamPolicyJSON
|
|
|
|
|
|
}
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2023-05-23 19:16:09 +08:00
|
|
|
|
type FindNodeHTTPCCPoliciesResponse_HTTPCCPolicy struct {
|
|
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
|
|
|
|
NodeClusterId int64 `protobuf:"varint,1,opt,name=nodeClusterId,proto3" json:"nodeClusterId,omitempty"` // 集群ID
|
|
|
|
|
|
HttpCCPolicyJSON []byte `protobuf:"bytes,2,opt,name=httpCCPolicyJSON,proto3" json:"httpCCPolicyJSON,omitempty"` // HTTP CC策略配置
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeHTTPCCPoliciesResponse_HTTPCCPolicy) Reset() {
|
|
|
|
|
|
*x = FindNodeHTTPCCPoliciesResponse_HTTPCCPolicy{}
|
|
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2023-07-24 09:56:49 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[100]
|
2023-05-23 19:16:09 +08:00
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeHTTPCCPoliciesResponse_HTTPCCPolicy) String() string {
|
|
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (*FindNodeHTTPCCPoliciesResponse_HTTPCCPolicy) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeHTTPCCPoliciesResponse_HTTPCCPolicy) ProtoReflect() protoreflect.Message {
|
2023-07-24 09:56:49 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[100]
|
2023-05-23 19:16:09 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use FindNodeHTTPCCPoliciesResponse_HTTPCCPolicy.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*FindNodeHTTPCCPoliciesResponse_HTTPCCPolicy) Descriptor() ([]byte, []int) {
|
|
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{82, 0}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeHTTPCCPoliciesResponse_HTTPCCPolicy) GetNodeClusterId() int64 {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.NodeClusterId
|
|
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeHTTPCCPoliciesResponse_HTTPCCPolicy) GetHttpCCPolicyJSON() []byte {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.HttpCCPolicyJSON
|
|
|
|
|
|
}
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2023-06-01 17:48:01 +08:00
|
|
|
|
type FindNodeHTTP3PoliciesResponse_HTTP3Policy struct {
|
|
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
|
|
|
|
NodeClusterId int64 `protobuf:"varint,1,opt,name=nodeClusterId,proto3" json:"nodeClusterId,omitempty"` // 集群ID
|
|
|
|
|
|
Http3PolicyJSON []byte `protobuf:"bytes,2,opt,name=http3PolicyJSON,proto3" json:"http3PolicyJSON,omitempty"` // HTTP3策略配置
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeHTTP3PoliciesResponse_HTTP3Policy) Reset() {
|
|
|
|
|
|
*x = FindNodeHTTP3PoliciesResponse_HTTP3Policy{}
|
|
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2023-07-24 09:56:49 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[101]
|
2023-06-01 17:48:01 +08:00
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeHTTP3PoliciesResponse_HTTP3Policy) String() string {
|
|
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (*FindNodeHTTP3PoliciesResponse_HTTP3Policy) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeHTTP3PoliciesResponse_HTTP3Policy) ProtoReflect() protoreflect.Message {
|
2023-07-24 09:56:49 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[101]
|
2023-06-01 17:48:01 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use FindNodeHTTP3PoliciesResponse_HTTP3Policy.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*FindNodeHTTP3PoliciesResponse_HTTP3Policy) Descriptor() ([]byte, []int) {
|
|
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{84, 0}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeHTTP3PoliciesResponse_HTTP3Policy) GetNodeClusterId() int64 {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.NodeClusterId
|
|
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeHTTP3PoliciesResponse_HTTP3Policy) GetHttp3PolicyJSON() []byte {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.Http3PolicyJSON
|
|
|
|
|
|
}
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2023-05-22 17:30:08 +08:00
|
|
|
|
type FindNodeHTTPPagesPoliciesResponse_HTTPPagesPolicy struct {
|
|
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
|
|
|
|
NodeClusterId int64 `protobuf:"varint,1,opt,name=nodeClusterId,proto3" json:"nodeClusterId,omitempty"` // 集群ID
|
|
|
|
|
|
HttpPagesPolicyJSON []byte `protobuf:"bytes,2,opt,name=httpPagesPolicyJSON,proto3" json:"httpPagesPolicyJSON,omitempty"` // 自定义页面策略配置
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeHTTPPagesPoliciesResponse_HTTPPagesPolicy) Reset() {
|
|
|
|
|
|
*x = FindNodeHTTPPagesPoliciesResponse_HTTPPagesPolicy{}
|
|
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2023-07-24 09:56:49 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[102]
|
2023-05-22 17:30:08 +08:00
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeHTTPPagesPoliciesResponse_HTTPPagesPolicy) String() string {
|
|
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (*FindNodeHTTPPagesPoliciesResponse_HTTPPagesPolicy) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeHTTPPagesPoliciesResponse_HTTPPagesPolicy) ProtoReflect() protoreflect.Message {
|
2023-07-24 09:56:49 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[102]
|
2023-05-22 17:30:08 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use FindNodeHTTPPagesPoliciesResponse_HTTPPagesPolicy.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*FindNodeHTTPPagesPoliciesResponse_HTTPPagesPolicy) Descriptor() ([]byte, []int) {
|
2023-06-01 17:48:01 +08:00
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{86, 0}
|
2023-05-22 17:30:08 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeHTTPPagesPoliciesResponse_HTTPPagesPolicy) GetNodeClusterId() int64 {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.NodeClusterId
|
|
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeHTTPPagesPoliciesResponse_HTTPPagesPolicy) GetHttpPagesPolicyJSON() []byte {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.HttpPagesPolicyJSON
|
|
|
|
|
|
}
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2023-05-17 18:42:35 +08:00
|
|
|
|
type FindNodeScheduleInfoResponse_ScheduleInfo struct {
|
|
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
|
|
|
|
OfflineDay string `protobuf:"bytes,1,opt,name=offlineDay,proto3" json:"offlineDay,omitempty"` // 下线日期,格式YYYYMMDD
|
|
|
|
|
|
IsBackupForCluster bool `protobuf:"varint,2,opt,name=isBackupForCluster,proto3" json:"isBackupForCluster,omitempty"` // 是否为集群备份节点
|
|
|
|
|
|
IsBackupForGroup bool `protobuf:"varint,3,opt,name=isBackupForGroup,proto3" json:"isBackupForGroup,omitempty"` // 是否为分组备份节点
|
|
|
|
|
|
BackupIPs []string `protobuf:"bytes,4,rep,name=backupIPs,proto3" json:"backupIPs,omitempty"` // 备用IP
|
|
|
|
|
|
ActionStatusJSON []byte `protobuf:"bytes,5,opt,name=actionStatusJSON,proto3" json:"actionStatusJSON,omitempty"` // 动作状态
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeScheduleInfoResponse_ScheduleInfo) Reset() {
|
|
|
|
|
|
*x = FindNodeScheduleInfoResponse_ScheduleInfo{}
|
|
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2023-07-24 09:56:49 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[103]
|
2023-05-17 18:42:35 +08:00
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeScheduleInfoResponse_ScheduleInfo) String() string {
|
|
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (*FindNodeScheduleInfoResponse_ScheduleInfo) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeScheduleInfoResponse_ScheduleInfo) ProtoReflect() protoreflect.Message {
|
2023-07-24 09:56:49 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[103]
|
2023-05-17 18:42:35 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use FindNodeScheduleInfoResponse_ScheduleInfo.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*FindNodeScheduleInfoResponse_ScheduleInfo) Descriptor() ([]byte, []int) {
|
2023-06-01 17:48:01 +08:00
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{88, 0}
|
2023-05-17 18:42:35 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeScheduleInfoResponse_ScheduleInfo) GetOfflineDay() string {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.OfflineDay
|
|
|
|
|
|
}
|
|
|
|
|
|
return ""
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeScheduleInfoResponse_ScheduleInfo) GetIsBackupForCluster() bool {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.IsBackupForCluster
|
|
|
|
|
|
}
|
|
|
|
|
|
return false
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeScheduleInfoResponse_ScheduleInfo) GetIsBackupForGroup() bool {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.IsBackupForGroup
|
|
|
|
|
|
}
|
|
|
|
|
|
return false
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeScheduleInfoResponse_ScheduleInfo) GetBackupIPs() []string {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.BackupIPs
|
|
|
|
|
|
}
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindNodeScheduleInfoResponse_ScheduleInfo) GetActionStatusJSON() []byte {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.ActionStatusJSON
|
|
|
|
|
|
}
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2023-05-19 11:12:09 +08:00
|
|
|
|
type FindAllNodeScheduleInfoWithNodeClusterIdResponse_ScheduleInfo struct {
|
|
|
|
|
|
state protoimpl.MessageState
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
|
|
|
|
NodeId int64 `protobuf:"varint,1,opt,name=nodeId,proto3" json:"nodeId,omitempty"` // 节点ID
|
|
|
|
|
|
NodeName string `protobuf:"bytes,2,opt,name=nodeName,proto3" json:"nodeName,omitempty"` // 节点名称
|
|
|
|
|
|
NodeGroupId int64 `protobuf:"varint,3,opt,name=nodeGroupId,proto3" json:"nodeGroupId,omitempty"` // 节点分组ID
|
|
|
|
|
|
NodeGroupName string `protobuf:"bytes,4,opt,name=nodeGroupName,proto3" json:"nodeGroupName,omitempty"` // 节点分组名称
|
|
|
|
|
|
OfflineDay string `protobuf:"bytes,5,opt,name=offlineDay,proto3" json:"offlineDay,omitempty"` // 下线日期,格式YYYYMMDD
|
|
|
|
|
|
IsBackupForCluster bool `protobuf:"varint,6,opt,name=isBackupForCluster,proto3" json:"isBackupForCluster,omitempty"` // 是否为集群备份节点
|
|
|
|
|
|
IsBackupForGroup bool `protobuf:"varint,7,opt,name=isBackupForGroup,proto3" json:"isBackupForGroup,omitempty"` // 是否为分组备份节点
|
|
|
|
|
|
BackupIPs []string `protobuf:"bytes,8,rep,name=backupIPs,proto3" json:"backupIPs,omitempty"` // 备用IP
|
|
|
|
|
|
ActionStatusJSON []byte `protobuf:"bytes,9,opt,name=actionStatusJSON,proto3" json:"actionStatusJSON,omitempty"` // 动作状态
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindAllNodeScheduleInfoWithNodeClusterIdResponse_ScheduleInfo) Reset() {
|
|
|
|
|
|
*x = FindAllNodeScheduleInfoWithNodeClusterIdResponse_ScheduleInfo{}
|
|
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2023-07-24 09:56:49 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[104]
|
2023-05-19 11:12:09 +08:00
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindAllNodeScheduleInfoWithNodeClusterIdResponse_ScheduleInfo) String() string {
|
|
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (*FindAllNodeScheduleInfoWithNodeClusterIdResponse_ScheduleInfo) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindAllNodeScheduleInfoWithNodeClusterIdResponse_ScheduleInfo) ProtoReflect() protoreflect.Message {
|
2023-07-24 09:56:49 +08:00
|
|
|
|
mi := &file_service_node_proto_msgTypes[104]
|
2023-05-19 11:12:09 +08:00
|
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
}
|
|
|
|
|
|
return ms
|
|
|
|
|
|
}
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use FindAllNodeScheduleInfoWithNodeClusterIdResponse_ScheduleInfo.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
func (*FindAllNodeScheduleInfoWithNodeClusterIdResponse_ScheduleInfo) Descriptor() ([]byte, []int) {
|
2023-06-01 17:48:01 +08:00
|
|
|
|
return file_service_node_proto_rawDescGZIP(), []int{92, 0}
|
2023-05-19 11:12:09 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindAllNodeScheduleInfoWithNodeClusterIdResponse_ScheduleInfo) GetNodeId() int64 {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.NodeId
|
|
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindAllNodeScheduleInfoWithNodeClusterIdResponse_ScheduleInfo) GetNodeName() string {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.NodeName
|
|
|
|
|
|
}
|
|
|
|
|
|
return ""
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindAllNodeScheduleInfoWithNodeClusterIdResponse_ScheduleInfo) GetNodeGroupId() int64 {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.NodeGroupId
|
|
|
|
|
|
}
|
|
|
|
|
|
return 0
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindAllNodeScheduleInfoWithNodeClusterIdResponse_ScheduleInfo) GetNodeGroupName() string {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.NodeGroupName
|
|
|
|
|
|
}
|
|
|
|
|
|
return ""
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindAllNodeScheduleInfoWithNodeClusterIdResponse_ScheduleInfo) GetOfflineDay() string {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.OfflineDay
|
|
|
|
|
|
}
|
|
|
|
|
|
return ""
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindAllNodeScheduleInfoWithNodeClusterIdResponse_ScheduleInfo) GetIsBackupForCluster() bool {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.IsBackupForCluster
|
|
|
|
|
|
}
|
|
|
|
|
|
return false
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindAllNodeScheduleInfoWithNodeClusterIdResponse_ScheduleInfo) GetIsBackupForGroup() bool {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.IsBackupForGroup
|
|
|
|
|
|
}
|
|
|
|
|
|
return false
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindAllNodeScheduleInfoWithNodeClusterIdResponse_ScheduleInfo) GetBackupIPs() []string {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.BackupIPs
|
|
|
|
|
|
}
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *FindAllNodeScheduleInfoWithNodeClusterIdResponse_ScheduleInfo) GetActionStatusJSON() []byte {
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
return x.ActionStatusJSON
|
|
|
|
|
|
}
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2020-09-13 19:27:47 +08:00
|
|
|
|
var File_service_node_proto protoreflect.FileDescriptor
|
|
|
|
|
|
|
|
|
|
|
|
var file_service_node_proto_rawDesc = []byte{
|
|
|
|
|
|
0x0a, 0x12, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x6e, 0x6f, 0x64, 0x65, 0x2e, 0x70,
|
2021-01-25 16:41:30 +08:00
|
|
|
|
0x72, 0x6f, 0x74, 0x6f, 0x12, 0x02, 0x70, 0x62, 0x1a, 0x17, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x73,
|
|
|
|
|
|
0x2f, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x5f, 0x6e, 0x6f, 0x64, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
|
|
|
|
|
|
0x6f, 0x1a, 0x1d, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x73, 0x2f, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x5f,
|
|
|
|
|
|
0x6e, 0x6f, 0x64, 0x65, 0x5f, 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
|
|
|
|
|
|
0x1a, 0x26, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x73, 0x2f, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x5f, 0x6e,
|
|
|
|
|
|
0x6f, 0x64, 0x65, 0x5f, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x5f, 0x73, 0x74, 0x61, 0x74,
|
|
|
|
|
|
0x75, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x73,
|
|
|
|
|
|
0x2f, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x5f, 0x64, 0x6e, 0x73, 0x5f, 0x72, 0x6f, 0x75, 0x74, 0x65,
|
2021-05-12 21:38:02 +08:00
|
|
|
|
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x20, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x73, 0x2f, 0x6d,
|
|
|
|
|
|
0x6f, 0x64, 0x65, 0x6c, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x5f, 0x63, 0x61, 0x70, 0x61, 0x63, 0x69,
|
2022-10-20 15:14:22 +08:00
|
|
|
|
0x74, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1f, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x73,
|
|
|
|
|
|
0x2f, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x5f, 0x6e, 0x6f, 0x64, 0x65, 0x5f, 0x63, 0x6c, 0x75, 0x73,
|
|
|
|
|
|
0x74, 0x65, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1e, 0x6d, 0x6f, 0x64, 0x65, 0x6c,
|
|
|
|
|
|
0x73, 0x2f, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x5f, 0x6e, 0x6f, 0x64, 0x65, 0x5f, 0x72, 0x65, 0x67,
|
|
|
|
|
|
0x69, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x19, 0x6d, 0x6f, 0x64, 0x65, 0x6c,
|
|
|
|
|
|
0x73, 0x2f, 0x72, 0x70, 0x63, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x73, 0x2e, 0x70,
|
|
|
|
|
|
0x72, 0x6f, 0x74, 0x6f, 0x22, 0x84, 0x02, 0x0a, 0x11, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4e,
|
|
|
|
|
|
0x6f, 0x64, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61,
|
|
|
|
|
|
0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x24,
|
|
|
|
|
|
0x0a, 0x0d, 0x6e, 0x6f, 0x64, 0x65, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x49, 0x64, 0x18,
|
|
|
|
|
|
0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0d, 0x6e, 0x6f, 0x64, 0x65, 0x43, 0x6c, 0x75, 0x73, 0x74,
|
|
|
|
|
|
0x65, 0x72, 0x49, 0x64, 0x12, 0x2b, 0x0a, 0x09, 0x6e, 0x6f, 0x64, 0x65, 0x4c, 0x6f, 0x67, 0x69,
|
|
|
|
|
|
0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0d, 0x2e, 0x70, 0x62, 0x2e, 0x4e, 0x6f, 0x64,
|
|
|
|
|
|
0x65, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x52, 0x09, 0x6e, 0x6f, 0x64, 0x65, 0x4c, 0x6f, 0x67, 0x69,
|
|
|
|
|
|
0x6e, 0x12, 0x20, 0x0a, 0x0b, 0x6e, 0x6f, 0x64, 0x65, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x49, 0x64,
|
|
|
|
|
|
0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x6e, 0x6f, 0x64, 0x65, 0x47, 0x72, 0x6f, 0x75,
|
|
|
|
|
|
0x70, 0x49, 0x64, 0x12, 0x24, 0x0a, 0x0b, 0x64, 0x6e, 0x73, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e,
|
|
|
|
|
|
0x49, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x42, 0x02, 0x18, 0x01, 0x52, 0x0b, 0x64, 0x6e,
|
|
|
|
|
|
0x73, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x49, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x64, 0x6e, 0x73,
|
|
|
|
|
|
0x52, 0x6f, 0x75, 0x74, 0x65, 0x73, 0x18, 0x06, 0x20, 0x03, 0x28, 0x09, 0x52, 0x09, 0x64, 0x6e,
|
|
|
|
|
|
0x73, 0x52, 0x6f, 0x75, 0x74, 0x65, 0x73, 0x12, 0x22, 0x0a, 0x0c, 0x6e, 0x6f, 0x64, 0x65, 0x52,
|
|
|
|
|
|
0x65, 0x67, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0c, 0x6e,
|
|
|
|
|
|
0x6f, 0x64, 0x65, 0x52, 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x22, 0x2c, 0x0a, 0x12, 0x43,
|
|
|
|
|
|
0x72, 0x65, 0x61, 0x74, 0x65, 0x4e, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
|
|
|
|
|
|
0x65, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x6f, 0x64, 0x65, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
|
|
|
|
|
|
0x03, 0x52, 0x06, 0x6e, 0x6f, 0x64, 0x65, 0x49, 0x64, 0x22, 0x30, 0x0a, 0x1a, 0x52, 0x65, 0x67,
|
|
|
|
|
|
0x69, 0x73, 0x74, 0x65, 0x72, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x4e, 0x6f, 0x64, 0x65,
|
|
|
|
|
|
0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18,
|
|
|
|
|
|
0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x6f, 0x0a, 0x1b, 0x52,
|
|
|
|
|
|
0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x4e, 0x6f,
|
|
|
|
|
|
0x64, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x75, 0x6e,
|
|
|
|
|
|
0x69, 0x71, 0x75, 0x65, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x75, 0x6e,
|
|
|
|
|
|
0x69, 0x71, 0x75, 0x65, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x65, 0x63, 0x72, 0x65, 0x74,
|
|
|
|
|
|
0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x65, 0x63, 0x72, 0x65, 0x74, 0x12, 0x1c,
|
|
|
|
|
|
0x0a, 0x09, 0x65, 0x6e, 0x64, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28,
|
|
|
|
|
|
0x09, 0x52, 0x09, 0x65, 0x6e, 0x64, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x73, 0x22, 0x1d, 0x0a, 0x1b,
|
|
|
|
|
|
0x43, 0x6f, 0x75, 0x6e, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x4e,
|
2023-03-15 17:58:01 +08:00
|
|
|
|
0x6f, 0x64, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0xbc, 0x05, 0x0a, 0x1c,
|
2022-10-20 15:14:22 +08:00
|
|
|
|
0x4c, 0x69, 0x73, 0x74, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x4e, 0x6f, 0x64, 0x65, 0x73,
|
|
|
|
|
|
0x4d, 0x61, 0x74, 0x63, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06,
|
|
|
|
|
|
0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6f, 0x66,
|
|
|
|
|
|
0x66, 0x73, 0x65, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x02, 0x20, 0x01,
|
|
|
|
|
|
0x28, 0x03, 0x52, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x12, 0x24, 0x0a, 0x0d, 0x6e, 0x6f, 0x64, 0x65,
|
|
|
|
|
|
0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52,
|
|
|
|
|
|
0x0d, 0x6e, 0x6f, 0x64, 0x65, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x49, 0x64, 0x12, 0x22,
|
|
|
|
|
|
0x0a, 0x0c, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x53, 0x74, 0x61, 0x74, 0x65, 0x18, 0x04,
|
|
|
|
|
|
0x20, 0x01, 0x28, 0x05, 0x52, 0x0c, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x53, 0x74, 0x61,
|
|
|
|
|
|
0x74, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x61, 0x63, 0x74, 0x69, 0x76, 0x65, 0x53, 0x74, 0x61, 0x74,
|
|
|
|
|
|
0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0b, 0x61, 0x63, 0x74, 0x69, 0x76, 0x65, 0x53,
|
|
|
|
|
|
0x74, 0x61, 0x74, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x18,
|
|
|
|
|
|
0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x12, 0x20,
|
2022-05-23 19:56:11 +08:00
|
|
|
|
0x0a, 0x0b, 0x6e, 0x6f, 0x64, 0x65, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x49, 0x64, 0x18, 0x07, 0x20,
|
|
|
|
|
|
0x01, 0x28, 0x03, 0x52, 0x0b, 0x6e, 0x6f, 0x64, 0x65, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x49, 0x64,
|
|
|
|
|
|
0x12, 0x22, 0x0a, 0x0c, 0x6e, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x49, 0x64,
|
2022-10-20 15:14:22 +08:00
|
|
|
|
0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0c, 0x6e, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x67, 0x69,
|
|
|
|
|
|
0x6f, 0x6e, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x18, 0x09, 0x20,
|
|
|
|
|
|
0x01, 0x28, 0x05, 0x52, 0x05, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x70,
|
|
|
|
|
|
0x75, 0x41, 0x73, 0x63, 0x18, 0x14, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x63, 0x70, 0x75, 0x41,
|
|
|
|
|
|
0x73, 0x63, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x70, 0x75, 0x44, 0x65, 0x73, 0x63, 0x18, 0x15, 0x20,
|
|
|
|
|
|
0x01, 0x28, 0x08, 0x52, 0x07, 0x63, 0x70, 0x75, 0x44, 0x65, 0x73, 0x63, 0x12, 0x1c, 0x0a, 0x09,
|
|
|
|
|
|
0x6d, 0x65, 0x6d, 0x6f, 0x72, 0x79, 0x41, 0x73, 0x63, 0x18, 0x16, 0x20, 0x01, 0x28, 0x08, 0x52,
|
|
|
|
|
|
0x09, 0x6d, 0x65, 0x6d, 0x6f, 0x72, 0x79, 0x41, 0x73, 0x63, 0x12, 0x1e, 0x0a, 0x0a, 0x6d, 0x65,
|
|
|
|
|
|
0x6d, 0x6f, 0x72, 0x79, 0x44, 0x65, 0x73, 0x63, 0x18, 0x17, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0a,
|
|
|
|
|
|
0x6d, 0x65, 0x6d, 0x6f, 0x72, 0x79, 0x44, 0x65, 0x73, 0x63, 0x12, 0x22, 0x0a, 0x0c, 0x74, 0x72,
|
|
|
|
|
|
0x61, 0x66, 0x66, 0x69, 0x63, 0x49, 0x6e, 0x41, 0x73, 0x63, 0x18, 0x18, 0x20, 0x01, 0x28, 0x08,
|
|
|
|
|
|
0x52, 0x0c, 0x74, 0x72, 0x61, 0x66, 0x66, 0x69, 0x63, 0x49, 0x6e, 0x41, 0x73, 0x63, 0x12, 0x24,
|
|
|
|
|
|
0x0a, 0x0d, 0x74, 0x72, 0x61, 0x66, 0x66, 0x69, 0x63, 0x49, 0x6e, 0x44, 0x65, 0x73, 0x63, 0x18,
|
|
|
|
|
|
0x19, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0d, 0x74, 0x72, 0x61, 0x66, 0x66, 0x69, 0x63, 0x49, 0x6e,
|
|
|
|
|
|
0x44, 0x65, 0x73, 0x63, 0x12, 0x24, 0x0a, 0x0d, 0x74, 0x72, 0x61, 0x66, 0x66, 0x69, 0x63, 0x4f,
|
|
|
|
|
|
0x75, 0x74, 0x41, 0x73, 0x63, 0x18, 0x1a, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0d, 0x74, 0x72, 0x61,
|
|
|
|
|
|
0x66, 0x66, 0x69, 0x63, 0x4f, 0x75, 0x74, 0x41, 0x73, 0x63, 0x12, 0x26, 0x0a, 0x0e, 0x74, 0x72,
|
|
|
|
|
|
0x61, 0x66, 0x66, 0x69, 0x63, 0x4f, 0x75, 0x74, 0x44, 0x65, 0x73, 0x63, 0x18, 0x1b, 0x20, 0x01,
|
|
|
|
|
|
0x28, 0x08, 0x52, 0x0e, 0x74, 0x72, 0x61, 0x66, 0x66, 0x69, 0x63, 0x4f, 0x75, 0x74, 0x44, 0x65,
|
|
|
|
|
|
0x73, 0x63, 0x12, 0x18, 0x0a, 0x07, 0x6c, 0x6f, 0x61, 0x64, 0x41, 0x73, 0x63, 0x18, 0x1c, 0x20,
|
|
|
|
|
|
0x01, 0x28, 0x08, 0x52, 0x07, 0x6c, 0x6f, 0x61, 0x64, 0x41, 0x73, 0x63, 0x12, 0x1a, 0x0a, 0x08,
|
|
|
|
|
|
0x6c, 0x6f, 0x61, 0x64, 0x44, 0x65, 0x73, 0x63, 0x18, 0x1d, 0x20, 0x01, 0x28, 0x08, 0x52, 0x08,
|
2023-03-15 17:58:01 +08:00
|
|
|
|
0x6c, 0x6f, 0x61, 0x64, 0x44, 0x65, 0x73, 0x63, 0x12, 0x26, 0x0a, 0x0e, 0x63, 0x6f, 0x6e, 0x6e,
|
|
|
|
|
|
0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x41, 0x73, 0x63, 0x18, 0x1e, 0x20, 0x01, 0x28, 0x08,
|
|
|
|
|
|
0x52, 0x0e, 0x63, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x41, 0x73, 0x63,
|
|
|
|
|
|
0x12, 0x28, 0x0a, 0x0f, 0x63, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x44,
|
|
|
|
|
|
0x65, 0x73, 0x63, 0x18, 0x1f, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0f, 0x63, 0x6f, 0x6e, 0x6e, 0x65,
|
|
|
|
|
|
0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x44, 0x65, 0x73, 0x63, 0x22, 0x3f, 0x0a, 0x1d, 0x4c, 0x69,
|
|
|
|
|
|
0x73, 0x74, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x4e, 0x6f, 0x64, 0x65, 0x73, 0x4d, 0x61,
|
|
|
|
|
|
0x74, 0x63, 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1e, 0x0a, 0x05, 0x6e,
|
|
|
|
|
|
0x6f, 0x64, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x08, 0x2e, 0x70, 0x62, 0x2e,
|
|
|
|
|
|
0x4e, 0x6f, 0x64, 0x65, 0x52, 0x05, 0x6e, 0x6f, 0x64, 0x65, 0x73, 0x22, 0x7f, 0x0a, 0x2b, 0x46,
|
|
|
|
|
|
0x69, 0x6e, 0x64, 0x41, 0x6c, 0x6c, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x4e, 0x6f, 0x64,
|
|
|
|
|
|
0x65, 0x73, 0x57, 0x69, 0x74, 0x68, 0x4e, 0x6f, 0x64, 0x65, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65,
|
|
|
|
|
|
0x72, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x24, 0x0a, 0x0d, 0x6e, 0x6f,
|
|
|
|
|
|
0x64, 0x65, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
|
|
|
|
|
|
0x03, 0x52, 0x0d, 0x6e, 0x6f, 0x64, 0x65, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x49, 0x64,
|
|
|
|
|
|
0x12, 0x2a, 0x0a, 0x10, 0x69, 0x6e, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x53, 0x65, 0x63, 0x6f, 0x6e,
|
|
|
|
|
|
0x64, 0x61, 0x72, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x10, 0x69, 0x6e, 0x63, 0x6c,
|
|
|
|
|
|
0x75, 0x64, 0x65, 0x53, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x61, 0x72, 0x79, 0x22, 0x4e, 0x0a, 0x2c,
|
|
|
|
|
|
0x46, 0x69, 0x6e, 0x64, 0x41, 0x6c, 0x6c, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x4e, 0x6f,
|
|
|
|
|
|
0x64, 0x65, 0x73, 0x57, 0x69, 0x74, 0x68, 0x4e, 0x6f, 0x64, 0x65, 0x43, 0x6c, 0x75, 0x73, 0x74,
|
|
|
|
|
|
0x65, 0x72, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1e, 0x0a, 0x05,
|
|
|
|
|
|
0x6e, 0x6f, 0x64, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x08, 0x2e, 0x70, 0x62,
|
|
|
|
|
|
0x2e, 0x4e, 0x6f, 0x64, 0x65, 0x52, 0x05, 0x6e, 0x6f, 0x64, 0x65, 0x73, 0x22, 0x2b, 0x0a, 0x11,
|
|
|
|
|
|
0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x4e, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
|
|
|
|
|
|
0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x6f, 0x64, 0x65, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
|
|
|
|
|
|
0x03, 0x52, 0x06, 0x6e, 0x6f, 0x64, 0x65, 0x49, 0x64, 0x22, 0x60, 0x0a, 0x20, 0x44, 0x65, 0x6c,
|
|
|
|
|
|
0x65, 0x74, 0x65, 0x4e, 0x6f, 0x64, 0x65, 0x46, 0x72, 0x6f, 0x6d, 0x4e, 0x6f, 0x64, 0x65, 0x43,
|
|
|
|
|
|
0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a,
|
|
|
|
|
|
0x06, 0x6e, 0x6f, 0x64, 0x65, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e,
|
|
|
|
|
|
0x6f, 0x64, 0x65, 0x49, 0x64, 0x12, 0x24, 0x0a, 0x0d, 0x6e, 0x6f, 0x64, 0x65, 0x43, 0x6c, 0x75,
|
|
|
|
|
|
0x73, 0x74, 0x65, 0x72, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0d, 0x6e, 0x6f,
|
|
|
|
|
|
0x64, 0x65, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x49, 0x64, 0x22, 0xcf, 0x02, 0x0a, 0x11,
|
|
|
|
|
|
0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4e, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
|
|
|
|
|
|
0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x6f, 0x64, 0x65, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
|
|
|
|
|
|
0x03, 0x52, 0x06, 0x6e, 0x6f, 0x64, 0x65, 0x49, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d,
|
|
|
|
|
|
0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x24, 0x0a,
|
|
|
|
|
|
0x0d, 0x6e, 0x6f, 0x64, 0x65, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x49, 0x64, 0x18, 0x03,
|
|
|
|
|
|
0x20, 0x01, 0x28, 0x03, 0x52, 0x0d, 0x6e, 0x6f, 0x64, 0x65, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65,
|
|
|
|
|
|
0x72, 0x49, 0x64, 0x12, 0x38, 0x0a, 0x17, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x61, 0x72, 0x79,
|
|
|
|
|
|
0x4e, 0x6f, 0x64, 0x65, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x49, 0x64, 0x73, 0x18, 0x0d,
|
|
|
|
|
|
0x20, 0x03, 0x28, 0x03, 0x52, 0x17, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x61, 0x72, 0x79, 0x4e,
|
|
|
|
|
|
0x6f, 0x64, 0x65, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x49, 0x64, 0x73, 0x12, 0x12, 0x0a,
|
|
|
|
|
|
0x04, 0x69, 0x73, 0x4f, 0x6e, 0x18, 0x06, 0x20, 0x01, 0x28, 0x08, 0x52, 0x04, 0x69, 0x73, 0x4f,
|
|
|
|
|
|
0x6e, 0x12, 0x20, 0x0a, 0x0b, 0x6e, 0x6f, 0x64, 0x65, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x49, 0x64,
|
|
|
|
|
|
0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x6e, 0x6f, 0x64, 0x65, 0x47, 0x72, 0x6f, 0x75,
|
|
|
|
|
|
0x70, 0x49, 0x64, 0x12, 0x22, 0x0a, 0x0c, 0x6e, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x67, 0x69, 0x6f,
|
|
|
|
|
|
0x6e, 0x49, 0x64, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0c, 0x6e, 0x6f, 0x64, 0x65, 0x52,
|
|
|
|
|
|
0x65, 0x67, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x65, 0x76, 0x65, 0x6c,
|
|
|
|
|
|
0x18, 0x0e, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x12, 0x18, 0x0a,
|
|
|
|
|
|
0x07, 0x6c, 0x6e, 0x41, 0x64, 0x64, 0x72, 0x73, 0x18, 0x0f, 0x20, 0x03, 0x28, 0x09, 0x52, 0x07,
|
|
|
|
|
|
0x6c, 0x6e, 0x41, 0x64, 0x64, 0x72, 0x73, 0x12, 0x24, 0x0a, 0x0d, 0x65, 0x6e, 0x61, 0x62, 0x6c,
|
|
|
|
|
|
0x65, 0x49, 0x50, 0x4c, 0x69, 0x73, 0x74, 0x73, 0x18, 0x10, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0d,
|
|
|
|
|
|
0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x49, 0x50, 0x4c, 0x69, 0x73, 0x74, 0x73, 0x22, 0x30, 0x0a,
|
|
|
|
|
|
0x16, 0x46, 0x69, 0x6e, 0x64, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x4e, 0x6f, 0x64, 0x65,
|
|
|
|
|
|
0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x6f, 0x64, 0x65, 0x49,
|
|
|
|
|
|
0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x6f, 0x64, 0x65, 0x49, 0x64, 0x22,
|
|
|
|
|
|
0x37, 0x0a, 0x17, 0x46, 0x69, 0x6e, 0x64, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x4e, 0x6f,
|
|
|
|
|
|
0x64, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1c, 0x0a, 0x04, 0x6e, 0x6f,
|
|
|
|
|
|
0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x08, 0x2e, 0x70, 0x62, 0x2e, 0x4e, 0x6f,
|
|
|
|
|
|
0x64, 0x65, 0x52, 0x04, 0x6e, 0x6f, 0x64, 0x65, 0x22, 0x35, 0x0a, 0x1b, 0x46, 0x69, 0x6e, 0x64,
|
|
|
|
|
|
0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x42, 0x61, 0x73, 0x69, 0x63, 0x4e, 0x6f, 0x64, 0x65,
|
|
|
|
|
|
0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x6f, 0x64, 0x65, 0x49,
|
|
|
|
|
|
0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x6f, 0x64, 0x65, 0x49, 0x64, 0x22,
|
|
|
|
|
|
0x41, 0x0a, 0x1c, 0x46, 0x69, 0x6e, 0x64, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x42, 0x61,
|
|
|
|
|
|
0x73, 0x69, 0x63, 0x4e, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12,
|
|
|
|
|
|
0x21, 0x0a, 0x04, 0x6e, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0d, 0x2e,
|
|
|
|
|
|
0x70, 0x62, 0x2e, 0x42, 0x61, 0x73, 0x69, 0x63, 0x4e, 0x6f, 0x64, 0x65, 0x52, 0x04, 0x6e, 0x6f,
|
2023-03-18 22:15:13 +08:00
|
|
|
|
0x64, 0x65, 0x22, 0x9e, 0x01, 0x0a, 0x1c, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x75, 0x72, 0x72, 0x65,
|
|
|
|
|
|
0x6e, 0x74, 0x4e, 0x6f, 0x64, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x65, 0x71, 0x75,
|
|
|
|
|
|
0x65, 0x73, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x01,
|
|
|
|
|
|
0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x1a, 0x0a,
|
|
|
|
|
|
0x08, 0x63, 0x6f, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52,
|
|
|
|
|
|
0x08, 0x63, 0x6f, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x12, 0x28, 0x0a, 0x0f, 0x6e, 0x6f, 0x64,
|
|
|
|
|
|
0x65, 0x54, 0x61, 0x73, 0x6b, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01,
|
|
|
|
|
|
0x28, 0x03, 0x52, 0x0f, 0x6e, 0x6f, 0x64, 0x65, 0x54, 0x61, 0x73, 0x6b, 0x56, 0x65, 0x72, 0x73,
|
|
|
|
|
|
0x69, 0x6f, 0x6e, 0x12, 0x1e, 0x0a, 0x0a, 0x75, 0x73, 0x65, 0x44, 0x61, 0x74, 0x61, 0x4d, 0x61,
|
|
|
|
|
|
0x70, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0a, 0x75, 0x73, 0x65, 0x44, 0x61, 0x74, 0x61,
|
|
|
|
|
|
0x4d, 0x61, 0x70, 0x22, 0xb7, 0x01, 0x0a, 0x1d, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x75, 0x72, 0x72,
|
|
|
|
|
|
0x65, 0x6e, 0x74, 0x4e, 0x6f, 0x64, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x65, 0x73,
|
|
|
|
|
|
0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x6f, 0x64, 0x65, 0x4a, 0x53, 0x4f,
|
|
|
|
|
|
0x4e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x08, 0x6e, 0x6f, 0x64, 0x65, 0x4a, 0x53, 0x4f,
|
|
|
|
|
|
0x4e, 0x12, 0x1c, 0x0a, 0x09, 0x69, 0x73, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x64, 0x18, 0x02,
|
|
|
|
|
|
0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x69, 0x73, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x64, 0x12,
|
|
|
|
|
|
0x22, 0x0a, 0x0c, 0x69, 0x73, 0x43, 0x6f, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x65, 0x64, 0x18,
|
|
|
|
|
|
0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0c, 0x69, 0x73, 0x43, 0x6f, 0x6d, 0x70, 0x72, 0x65, 0x73,
|
|
|
|
|
|
0x73, 0x65, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x64, 0x61, 0x74, 0x61, 0x53, 0x69, 0x7a, 0x65, 0x18,
|
|
|
|
|
|
0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x64, 0x61, 0x74, 0x61, 0x53, 0x69, 0x7a, 0x65, 0x12,
|
|
|
|
|
|
0x1c, 0x0a, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x18, 0x05, 0x20, 0x01,
|
|
|
|
|
|
0x28, 0x03, 0x52, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x22, 0xcf, 0x01,
|
|
|
|
|
|
0x0a, 0x11, 0x4e, 0x6f, 0x64, 0x65, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x4d, 0x65, 0x73, 0x73,
|
|
|
|
|
|
0x61, 0x67, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x6f, 0x64, 0x65, 0x49, 0x64, 0x18, 0x01, 0x20,
|
|
|
|
|
|
0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x6f, 0x64, 0x65, 0x49, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x72,
|
|
|
|
|
|
0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09,
|
|
|
|
|
|
0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x49, 0x64, 0x12, 0x26, 0x0a, 0x0e, 0x74, 0x69, 0x6d,
|
|
|
|
|
|
0x65, 0x6f, 0x75, 0x74, 0x53, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28,
|
|
|
|
|
|
0x05, 0x52, 0x0e, 0x74, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74, 0x53, 0x65, 0x63, 0x6f, 0x6e, 0x64,
|
|
|
|
|
|
0x73, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52,
|
|
|
|
|
|
0x04, 0x63, 0x6f, 0x64, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x64, 0x61, 0x74, 0x61, 0x4a, 0x53, 0x4f,
|
|
|
|
|
|
0x4e, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x08, 0x64, 0x61, 0x74, 0x61, 0x4a, 0x53, 0x4f,
|
|
|
|
|
|
0x4e, 0x12, 0x12, 0x0a, 0x04, 0x69, 0x73, 0x4f, 0x6b, 0x18, 0x06, 0x20, 0x01, 0x28, 0x08, 0x52,
|
|
|
|
|
|
0x04, 0x69, 0x73, 0x4f, 0x6b, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
|
|
|
|
|
|
0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x22,
|
|
|
|
|
|
0x51, 0x0a, 0x17, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4e, 0x6f, 0x64, 0x65, 0x53, 0x74, 0x61,
|
|
|
|
|
|
0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x6f,
|
2023-03-15 17:58:01 +08:00
|
|
|
|
0x64, 0x65, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x6f, 0x64, 0x65,
|
2023-03-18 22:15:13 +08:00
|
|
|
|
0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x4a, 0x53, 0x4f, 0x4e,
|
|
|
|
|
|
0x18, 0x02, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0a, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x4a, 0x53,
|
|
|
|
|
|
0x4f, 0x4e, 0x22, 0x84, 0x02, 0x0a, 0x20, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x41, 0x6c, 0x6c, 0x45,
|
|
|
|
|
|
0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x4e, 0x6f, 0x64, 0x65, 0x73, 0x4d, 0x61, 0x74, 0x63, 0x68,
|
|
|
|
|
|
0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x24, 0x0a, 0x0d, 0x6e, 0x6f, 0x64, 0x65, 0x43,
|
|
|
|
|
|
0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0d,
|
|
|
|
|
|
0x6e, 0x6f, 0x64, 0x65, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x49, 0x64, 0x12, 0x22, 0x0a,
|
|
|
|
|
|
0x0c, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x53, 0x74, 0x61, 0x74, 0x65, 0x18, 0x02, 0x20,
|
|
|
|
|
|
0x01, 0x28, 0x05, 0x52, 0x0c, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x53, 0x74, 0x61, 0x74,
|
|
|
|
|
|
0x65, 0x12, 0x20, 0x0a, 0x0b, 0x61, 0x63, 0x74, 0x69, 0x76, 0x65, 0x53, 0x74, 0x61, 0x74, 0x65,
|
|
|
|
|
|
0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0b, 0x61, 0x63, 0x74, 0x69, 0x76, 0x65, 0x53, 0x74,
|
|
|
|
|
|
0x61, 0x74, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x18, 0x04,
|
|
|
|
|
|
0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x12, 0x20, 0x0a,
|
|
|
|
|
|
0x0b, 0x6e, 0x6f, 0x64, 0x65, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x49, 0x64, 0x18, 0x05, 0x20, 0x01,
|
|
|
|
|
|
0x28, 0x03, 0x52, 0x0b, 0x6e, 0x6f, 0x64, 0x65, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x49, 0x64, 0x12,
|
|
|
|
|
|
0x22, 0x0a, 0x0c, 0x6e, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x18,
|
|
|
|
|
|
0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0c, 0x6e, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x67, 0x69, 0x6f,
|
|
|
|
|
|
0x6e, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x18, 0x07, 0x20, 0x01,
|
|
|
|
|
|
0x28, 0x05, 0x52, 0x05, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x22, 0x58, 0x0a, 0x1c, 0x55, 0x70, 0x64,
|
|
|
|
|
|
0x61, 0x74, 0x65, 0x4e, 0x6f, 0x64, 0x65, 0x49, 0x73, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c,
|
|
|
|
|
|
0x65, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x6f, 0x64,
|
|
|
|
|
|
0x65, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x6f, 0x64, 0x65, 0x49,
|
|
|
|
|
|
0x64, 0x12, 0x20, 0x0a, 0x0b, 0x69, 0x73, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x65, 0x64,
|
|
|
|
|
|
0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0b, 0x69, 0x73, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c,
|
|
|
|
|
|
0x6c, 0x65, 0x64, 0x22, 0x2c, 0x0a, 0x12, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x4e, 0x6f,
|
|
|
|
|
|
0x64, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x6f, 0x64,
|
|
|
|
|
|
0x65, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x6f, 0x64, 0x65, 0x49,
|
|
|
|
|
|
0x64, 0x22, 0x15, 0x0a, 0x13, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x4e, 0x6f, 0x64, 0x65,
|
|
|
|
|
|
0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x2c, 0x0a, 0x12, 0x55, 0x70, 0x67, 0x72,
|
|
|
|
|
|
0x61, 0x64, 0x65, 0x4e, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16,
|
|
|
|
|
|
0x0a, 0x06, 0x6e, 0x6f, 0x64, 0x65, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06,
|
|
|
|
|
|
0x6e, 0x6f, 0x64, 0x65, 0x49, 0x64, 0x22, 0x15, 0x0a, 0x13, 0x55, 0x70, 0x67, 0x72, 0x61, 0x64,
|
|
|
|
|
|
0x65, 0x4e, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x2a, 0x0a,
|
|
|
|
|
|
0x10, 0x53, 0x74, 0x61, 0x72, 0x74, 0x4e, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
|
|
|
|
|
|
0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x6f, 0x64, 0x65, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
|
|
|
|
|
|
0x03, 0x52, 0x06, 0x6e, 0x6f, 0x64, 0x65, 0x49, 0x64, 0x22, 0x3d, 0x0a, 0x11, 0x53, 0x74, 0x61,
|
|
|
|
|
|
0x72, 0x74, 0x4e, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x12,
|
|
|
|
|
|
0x0a, 0x04, 0x69, 0x73, 0x4f, 0x6b, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x04, 0x69, 0x73,
|
|
|
|
|
|
0x4f, 0x6b, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28,
|
|
|
|
|
|
0x09, 0x52, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x22, 0x29, 0x0a, 0x0f, 0x53, 0x74, 0x6f, 0x70,
|
|
|
|
|
|
0x4e, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e,
|
|
|
|
|
|
0x6f, 0x64, 0x65, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x6f, 0x64,
|
|
|
|
|
|
0x65, 0x49, 0x64, 0x22, 0x3c, 0x0a, 0x10, 0x53, 0x74, 0x6f, 0x70, 0x4e, 0x6f, 0x64, 0x65, 0x52,
|
|
|
|
|
|
0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x69, 0x73, 0x4f, 0x6b, 0x18,
|
|
|
|
|
|
0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x04, 0x69, 0x73, 0x4f, 0x6b, 0x12, 0x14, 0x0a, 0x05, 0x65,
|
|
|
|
|
|
0x72, 0x72, 0x6f, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x72, 0x72, 0x6f,
|
|
|
|
|
|
0x72, 0x22, 0x44, 0x0a, 0x22, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4e, 0x6f, 0x64, 0x65, 0x43,
|
|
|
|
|
|
0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x65, 0x64, 0x41, 0x50, 0x49, 0x4e, 0x6f, 0x64, 0x65, 0x73,
|
|
|
|
|
|
0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x61, 0x70, 0x69, 0x4e, 0x6f,
|
|
|
|
|
|
0x64, 0x65, 0x49, 0x64, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x03, 0x52, 0x0a, 0x61, 0x70, 0x69,
|
|
|
|
|
|
0x4e, 0x6f, 0x64, 0x65, 0x49, 0x64, 0x73, 0x22, 0x4e, 0x0a, 0x2a, 0x43, 0x6f, 0x75, 0x6e, 0x74,
|
|
|
|
|
|
0x41, 0x6c, 0x6c, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x4e, 0x6f, 0x64, 0x65, 0x73, 0x57,
|
|
|
|
|
|
0x69, 0x74, 0x68, 0x4e, 0x6f, 0x64, 0x65, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65,
|
|
|
|
|
|
0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x20, 0x0a, 0x0b, 0x6e, 0x6f, 0x64, 0x65, 0x47, 0x72, 0x61,
|
|
|
|
|
|
0x6e, 0x74, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x6e, 0x6f, 0x64, 0x65,
|
|
|
|
|
|
0x47, 0x72, 0x61, 0x6e, 0x74, 0x49, 0x64, 0x22, 0x4d, 0x0a, 0x29, 0x46, 0x69, 0x6e, 0x64, 0x41,
|
2023-03-15 17:58:01 +08:00
|
|
|
|
0x6c, 0x6c, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x4e, 0x6f, 0x64, 0x65, 0x73, 0x57, 0x69,
|
|
|
|
|
|
0x74, 0x68, 0x4e, 0x6f, 0x64, 0x65, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x71,
|
|
|
|
|
|
0x75, 0x65, 0x73, 0x74, 0x12, 0x20, 0x0a, 0x0b, 0x6e, 0x6f, 0x64, 0x65, 0x47, 0x72, 0x61, 0x6e,
|
|
|
|
|
|
0x74, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x6e, 0x6f, 0x64, 0x65, 0x47,
|
2023-03-18 22:15:13 +08:00
|
|
|
|
0x72, 0x61, 0x6e, 0x74, 0x49, 0x64, 0x22, 0x4c, 0x0a, 0x2a, 0x46, 0x69, 0x6e, 0x64, 0x41, 0x6c,
|
2023-03-15 17:58:01 +08:00
|
|
|
|
0x6c, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x4e, 0x6f, 0x64, 0x65, 0x73, 0x57, 0x69, 0x74,
|
2023-03-18 22:15:13 +08:00
|
|
|
|
0x68, 0x4e, 0x6f, 0x64, 0x65, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70,
|
|
|
|
|
|
0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1e, 0x0a, 0x05, 0x6e, 0x6f, 0x64, 0x65, 0x73, 0x18, 0x01, 0x20,
|
|
|
|
|
|
0x03, 0x28, 0x0b, 0x32, 0x08, 0x2e, 0x70, 0x62, 0x2e, 0x4e, 0x6f, 0x64, 0x65, 0x52, 0x05, 0x6e,
|
|
|
|
|
|
0x6f, 0x64, 0x65, 0x73, 0x22, 0x58, 0x0a, 0x30, 0x46, 0x69, 0x6e, 0x64, 0x41, 0x6c, 0x6c, 0x4e,
|
|
|
|
|
|
0x6f, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x65, 0x64, 0x4e, 0x6f, 0x64, 0x65, 0x73,
|
|
|
|
|
|
0x57, 0x69, 0x74, 0x68, 0x4e, 0x6f, 0x64, 0x65, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x49,
|
|
|
|
|
|
0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x24, 0x0a, 0x0d, 0x6e, 0x6f, 0x64, 0x65,
|
|
|
|
|
|
0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52,
|
|
|
|
|
|
0x0d, 0x6e, 0x6f, 0x64, 0x65, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x49, 0x64, 0x22, 0x53,
|
|
|
|
|
|
0x0a, 0x31, 0x46, 0x69, 0x6e, 0x64, 0x41, 0x6c, 0x6c, 0x4e, 0x6f, 0x74, 0x49, 0x6e, 0x73, 0x74,
|
|
|
|
|
|
0x61, 0x6c, 0x6c, 0x65, 0x64, 0x4e, 0x6f, 0x64, 0x65, 0x73, 0x57, 0x69, 0x74, 0x68, 0x4e, 0x6f,
|
|
|
|
|
|
0x64, 0x65, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f,
|
2023-03-15 17:58:01 +08:00
|
|
|
|
0x6e, 0x73, 0x65, 0x12, 0x1e, 0x0a, 0x05, 0x6e, 0x6f, 0x64, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03,
|
|
|
|
|
|
0x28, 0x0b, 0x32, 0x08, 0x2e, 0x70, 0x62, 0x2e, 0x4e, 0x6f, 0x64, 0x65, 0x52, 0x05, 0x6e, 0x6f,
|
2023-03-18 22:15:13 +08:00
|
|
|
|
0x64, 0x65, 0x73, 0x22, 0x59, 0x0a, 0x31, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x41, 0x6c, 0x6c, 0x4e,
|
|
|
|
|
|
0x6f, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x65, 0x64, 0x4e, 0x6f, 0x64, 0x65, 0x73,
|
|
|
|
|
|
0x57, 0x69, 0x74, 0x68, 0x4e, 0x6f, 0x64, 0x65, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x49,
|
|
|
|
|
|
0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x24, 0x0a, 0x0d, 0x6e, 0x6f, 0x64, 0x65,
|
|
|
|
|
|
0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52,
|
|
|
|
|
|
0x0d, 0x6e, 0x6f, 0x64, 0x65, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x49, 0x64, 0x22, 0x54,
|
|
|
|
|
|
0x0a, 0x2c, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x41, 0x6c, 0x6c, 0x55, 0x70, 0x67, 0x72, 0x61, 0x64,
|
|
|
|
|
|
0x65, 0x4e, 0x6f, 0x64, 0x65, 0x73, 0x57, 0x69, 0x74, 0x68, 0x4e, 0x6f, 0x64, 0x65, 0x43, 0x6c,
|
|
|
|
|
|
0x75, 0x73, 0x74, 0x65, 0x72, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x24,
|
|
|
|
|
|
0x0a, 0x0d, 0x6e, 0x6f, 0x64, 0x65, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x49, 0x64, 0x18,
|
|
|
|
|
|
0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0d, 0x6e, 0x6f, 0x64, 0x65, 0x43, 0x6c, 0x75, 0x73, 0x74,
|
|
|
|
|
|
0x65, 0x72, 0x49, 0x64, 0x22, 0x53, 0x0a, 0x2b, 0x46, 0x69, 0x6e, 0x64, 0x41, 0x6c, 0x6c, 0x55,
|
|
|
|
|
|
0x70, 0x67, 0x72, 0x61, 0x64, 0x65, 0x4e, 0x6f, 0x64, 0x65, 0x73, 0x57, 0x69, 0x74, 0x68, 0x4e,
|
|
|
|
|
|
0x6f, 0x64, 0x65, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75,
|
|
|
|
|
|
0x65, 0x73, 0x74, 0x12, 0x24, 0x0a, 0x0d, 0x6e, 0x6f, 0x64, 0x65, 0x43, 0x6c, 0x75, 0x73, 0x74,
|
|
|
|
|
|
0x65, 0x72, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0d, 0x6e, 0x6f, 0x64, 0x65,
|
|
|
|
|
|
0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x49, 0x64, 0x22, 0x94, 0x02, 0x0a, 0x2c, 0x46, 0x69,
|
|
|
|
|
|
0x6e, 0x64, 0x41, 0x6c, 0x6c, 0x55, 0x70, 0x67, 0x72, 0x61, 0x64, 0x65, 0x4e, 0x6f, 0x64, 0x65,
|
|
|
|
|
|
0x73, 0x57, 0x69, 0x74, 0x68, 0x4e, 0x6f, 0x64, 0x65, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72,
|
|
|
|
|
|
0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x52, 0x0a, 0x05, 0x6e, 0x6f,
|
|
|
|
|
|
0x64, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x3c, 0x2e, 0x70, 0x62, 0x2e, 0x46,
|
|
|
|
|
|
0x69, 0x6e, 0x64, 0x41, 0x6c, 0x6c, 0x55, 0x70, 0x67, 0x72, 0x61, 0x64, 0x65, 0x4e, 0x6f, 0x64,
|
|
|
|
|
|
0x65, 0x73, 0x57, 0x69, 0x74, 0x68, 0x4e, 0x6f, 0x64, 0x65, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65,
|
|
|
|
|
|
0x72, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x4e, 0x6f, 0x64, 0x65,
|
|
|
|
|
|
0x55, 0x70, 0x67, 0x72, 0x61, 0x64, 0x65, 0x52, 0x05, 0x6e, 0x6f, 0x64, 0x65, 0x73, 0x1a, 0x8f,
|
|
|
|
|
|
0x01, 0x0a, 0x0b, 0x4e, 0x6f, 0x64, 0x65, 0x55, 0x70, 0x67, 0x72, 0x61, 0x64, 0x65, 0x12, 0x1c,
|
|
|
|
|
|
0x0a, 0x04, 0x6e, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x08, 0x2e, 0x70,
|
|
|
|
|
|
0x62, 0x2e, 0x4e, 0x6f, 0x64, 0x65, 0x52, 0x04, 0x6e, 0x6f, 0x64, 0x65, 0x12, 0x0e, 0x0a, 0x02,
|
|
|
|
|
|
0x6f, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x6f, 0x73, 0x12, 0x12, 0x0a, 0x04,
|
|
|
|
|
|
0x61, 0x72, 0x63, 0x68, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x61, 0x72, 0x63, 0x68,
|
|
|
|
|
|
0x12, 0x1e, 0x0a, 0x0a, 0x6f, 0x6c, 0x64, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x04,
|
|
|
|
|
|
0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x6f, 0x6c, 0x64, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e,
|
|
|
|
|
|
0x12, 0x1e, 0x0a, 0x0a, 0x6e, 0x65, 0x77, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x05,
|
|
|
|
|
|
0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x6e, 0x65, 0x77, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e,
|
|
|
|
|
|
0x22, 0x36, 0x0a, 0x1c, 0x46, 0x69, 0x6e, 0x64, 0x4e, 0x6f, 0x64, 0x65, 0x49, 0x6e, 0x73, 0x74,
|
|
|
|
|
|
0x61, 0x6c, 0x6c, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
|
|
|
|
|
|
0x12, 0x16, 0x0a, 0x06, 0x6e, 0x6f, 0x64, 0x65, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03,
|
|
|
|
|
|
0x52, 0x06, 0x6e, 0x6f, 0x64, 0x65, 0x49, 0x64, 0x22, 0x5c, 0x0a, 0x1d, 0x46, 0x69, 0x6e, 0x64,
|
|
|
|
|
|
0x4e, 0x6f, 0x64, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x53, 0x74, 0x61, 0x74, 0x75,
|
|
|
|
|
|
0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x3b, 0x0a, 0x0d, 0x69, 0x6e, 0x73,
|
|
|
|
|
|
0x74, 0x61, 0x6c, 0x6c, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b,
|
|
|
|
|
|
0x32, 0x15, 0x2e, 0x70, 0x62, 0x2e, 0x4e, 0x6f, 0x64, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c,
|
|
|
|
|
|
0x6c, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x0d, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c,
|
|
|
|
|
|
0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0x5d, 0x0a, 0x16, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65,
|
|
|
|
|
|
0x4e, 0x6f, 0x64, 0x65, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
|
|
|
|
|
|
0x12, 0x16, 0x0a, 0x06, 0x6e, 0x6f, 0x64, 0x65, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03,
|
|
|
|
|
|
0x52, 0x06, 0x6e, 0x6f, 0x64, 0x65, 0x49, 0x64, 0x12, 0x2b, 0x0a, 0x09, 0x6e, 0x6f, 0x64, 0x65,
|
|
|
|
|
|
0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0d, 0x2e, 0x70, 0x62,
|
|
|
|
|
|
0x2e, 0x4e, 0x6f, 0x64, 0x65, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x52, 0x09, 0x6e, 0x6f, 0x64, 0x65,
|
|
|
|
|
|
0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x22, 0x4e, 0x0a, 0x2a, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x41, 0x6c,
|
|
|
|
|
|
0x6c, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x4e, 0x6f, 0x64, 0x65, 0x73, 0x57, 0x69, 0x74,
|
|
|
|
|
|
0x68, 0x4e, 0x6f, 0x64, 0x65, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75,
|
|
|
|
|
|
0x65, 0x73, 0x74, 0x12, 0x20, 0x0a, 0x0b, 0x6e, 0x6f, 0x64, 0x65, 0x47, 0x72, 0x6f, 0x75, 0x70,
|
|
|
|
|
|
0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x6e, 0x6f, 0x64, 0x65, 0x47, 0x72,
|
|
|
|
|
|
0x6f, 0x75, 0x70, 0x49, 0x64, 0x22, 0x78, 0x0a, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x41, 0x6c, 0x6c,
|
|
|
|
|
|
0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x4e, 0x6f, 0x64, 0x65, 0x73, 0x44, 0x4e, 0x53, 0x57,
|
2023-03-15 17:58:01 +08:00
|
|
|
|
0x69, 0x74, 0x68, 0x4e, 0x6f, 0x64, 0x65, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x49, 0x64,
|
|
|
|
|
|
0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x24, 0x0a, 0x0d, 0x6e, 0x6f, 0x64, 0x65, 0x43,
|
|
|
|
|
|
0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0d,
|
2023-03-18 22:15:13 +08:00
|
|
|
|
0x6e, 0x6f, 0x64, 0x65, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x49, 0x64, 0x12, 0x20, 0x0a,
|
|
|
|
|
|
0x0b, 0x69, 0x73, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x65, 0x64, 0x18, 0x02, 0x20, 0x01,
|
|
|
|
|
|
0x28, 0x08, 0x52, 0x0b, 0x69, 0x73, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x65, 0x64, 0x22,
|
|
|
|
|
|
0x58, 0x0a, 0x2f, 0x46, 0x69, 0x6e, 0x64, 0x41, 0x6c, 0x6c, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65,
|
|
|
|
|
|
0x64, 0x4e, 0x6f, 0x64, 0x65, 0x73, 0x44, 0x4e, 0x53, 0x57, 0x69, 0x74, 0x68, 0x4e, 0x6f, 0x64,
|
2023-03-15 17:58:01 +08:00
|
|
|
|
0x65, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
|
2023-03-18 22:15:13 +08:00
|
|
|
|
0x73, 0x65, 0x12, 0x25, 0x0a, 0x05, 0x6e, 0x6f, 0x64, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28,
|
|
|
|
|
|
0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4e, 0x6f, 0x64, 0x65, 0x44, 0x4e, 0x53, 0x49, 0x6e,
|
2023-05-17 18:42:35 +08:00
|
|
|
|
0x66, 0x6f, 0x52, 0x05, 0x6e, 0x6f, 0x64, 0x65, 0x73, 0x22, 0xb1, 0x03, 0x0a, 0x0b, 0x4e, 0x6f,
|
2023-03-18 22:15:13 +08:00
|
|
|
|
0x64, 0x65, 0x44, 0x4e, 0x53, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18,
|
|
|
|
|
|
0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d,
|
|
|
|
|
|
0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x16, 0x0a,
|
|
|
|
|
|
0x06, 0x69, 0x70, 0x41, 0x64, 0x64, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x69,
|
|
|
|
|
|
0x70, 0x41, 0x64, 0x64, 0x72, 0x12, 0x28, 0x0a, 0x0f, 0x6e, 0x6f, 0x64, 0x65, 0x49, 0x50, 0x41,
|
|
|
|
|
|
0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x49, 0x64, 0x18, 0x09, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0f,
|
|
|
|
|
|
0x6e, 0x6f, 0x64, 0x65, 0x49, 0x50, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x49, 0x64, 0x12,
|
|
|
|
|
|
0x24, 0x0a, 0x06, 0x72, 0x6f, 0x75, 0x74, 0x65, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32,
|
|
|
|
|
|
0x0c, 0x2e, 0x70, 0x62, 0x2e, 0x44, 0x4e, 0x53, 0x52, 0x6f, 0x75, 0x74, 0x65, 0x52, 0x06, 0x72,
|
|
|
|
|
|
0x6f, 0x75, 0x74, 0x65, 0x73, 0x12, 0x24, 0x0a, 0x0d, 0x6e, 0x6f, 0x64, 0x65, 0x43, 0x6c, 0x75,
|
|
|
|
|
|
0x73, 0x74, 0x65, 0x72, 0x49, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0d, 0x6e, 0x6f,
|
|
|
|
|
|
0x64, 0x65, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x49, 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x64,
|
|
|
|
|
|
0x6e, 0x73, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x49, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03,
|
|
|
|
|
|
0x52, 0x0b, 0x64, 0x6e, 0x73, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x49, 0x64, 0x12, 0x24, 0x0a,
|
|
|
|
|
|
0x0d, 0x64, 0x6e, 0x73, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x07,
|
|
|
|
|
|
0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x64, 0x6e, 0x73, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x4e,
|
|
|
|
|
|
0x61, 0x6d, 0x65, 0x12, 0x2e, 0x0a, 0x12, 0x6e, 0x6f, 0x64, 0x65, 0x43, 0x6c, 0x75, 0x73, 0x74,
|
|
|
|
|
|
0x65, 0x72, 0x44, 0x4e, 0x53, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52,
|
|
|
|
|
|
0x12, 0x6e, 0x6f, 0x64, 0x65, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x44, 0x4e, 0x53, 0x4e,
|
2023-05-17 18:42:35 +08:00
|
|
|
|
0x61, 0x6d, 0x65, 0x12, 0x2e, 0x0a, 0x12, 0x69, 0x73, 0x42, 0x61, 0x63, 0x6b, 0x75, 0x70, 0x46,
|
|
|
|
|
|
0x6f, 0x72, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x08, 0x52,
|
|
|
|
|
|
0x12, 0x69, 0x73, 0x42, 0x61, 0x63, 0x6b, 0x75, 0x70, 0x46, 0x6f, 0x72, 0x43, 0x6c, 0x75, 0x73,
|
|
|
|
|
|
0x74, 0x65, 0x72, 0x12, 0x2a, 0x0a, 0x10, 0x69, 0x73, 0x42, 0x61, 0x63, 0x6b, 0x75, 0x70, 0x46,
|
|
|
|
|
|
0x6f, 0x72, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x08, 0x52, 0x10, 0x69,
|
|
|
|
|
|
0x73, 0x42, 0x61, 0x63, 0x6b, 0x75, 0x70, 0x46, 0x6f, 0x72, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x12,
|
|
|
|
|
|
0x1c, 0x0a, 0x09, 0x69, 0x73, 0x4f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x18, 0x0c, 0x20, 0x01,
|
|
|
|
|
|
0x28, 0x08, 0x52, 0x09, 0x69, 0x73, 0x4f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x22, 0x7d, 0x0a,
|
|
|
|
|
|
0x19, 0x46, 0x69, 0x6e, 0x64, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x4e, 0x6f, 0x64, 0x65,
|
|
|
|
|
|
0x44, 0x4e, 0x53, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x6f,
|
|
|
|
|
|
0x64, 0x65, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x6f, 0x64, 0x65,
|
|
|
|
|
|
0x49, 0x64, 0x12, 0x24, 0x0a, 0x0d, 0x6e, 0x6f, 0x64, 0x65, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65,
|
|
|
|
|
|
0x72, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0d, 0x6e, 0x6f, 0x64, 0x65, 0x43,
|
|
|
|
|
|
0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x49, 0x64, 0x12, 0x22, 0x0a, 0x0c, 0x6e, 0x6f, 0x64, 0x65,
|
|
|
|
|
|
0x49, 0x50, 0x41, 0x64, 0x64, 0x72, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0c,
|
|
|
|
|
|
0x6e, 0x6f, 0x64, 0x65, 0x49, 0x50, 0x41, 0x64, 0x64, 0x72, 0x49, 0x64, 0x22, 0x41, 0x0a, 0x1a,
|
|
|
|
|
|
0x46, 0x69, 0x6e, 0x64, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x4e, 0x6f, 0x64, 0x65, 0x44,
|
|
|
|
|
|
0x4e, 0x53, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x23, 0x0a, 0x04, 0x6e, 0x6f,
|
|
|
|
|
|
0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4e, 0x6f,
|
|
|
|
|
|
0x64, 0x65, 0x44, 0x4e, 0x53, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x6e, 0x6f, 0x64, 0x65, 0x22,
|
|
|
|
|
|
0xaa, 0x01, 0x0a, 0x14, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4e, 0x6f, 0x64, 0x65, 0x44, 0x4e,
|
|
|
|
|
|
0x53, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x6f, 0x64, 0x65,
|
|
|
|
|
|
0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x6f, 0x64, 0x65, 0x49, 0x64,
|
|
|
|
|
|
0x12, 0x16, 0x0a, 0x06, 0x69, 0x70, 0x41, 0x64, 0x64, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
|
|
|
|
|
|
0x52, 0x06, 0x69, 0x70, 0x41, 0x64, 0x64, 0x72, 0x12, 0x28, 0x0a, 0x0f, 0x6e, 0x6f, 0x64, 0x65,
|
|
|
|
|
|
0x49, 0x50, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x49, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28,
|
|
|
|
|
|
0x03, 0x52, 0x0f, 0x6e, 0x6f, 0x64, 0x65, 0x49, 0x50, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73,
|
|
|
|
|
|
0x49, 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x6e, 0x73, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x49,
|
|
|
|
|
|
0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x64, 0x6e, 0x73, 0x44, 0x6f, 0x6d, 0x61,
|
|
|
|
|
|
0x69, 0x6e, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x6f, 0x75, 0x74, 0x65, 0x73, 0x18, 0x04,
|
|
|
|
|
|
0x20, 0x03, 0x28, 0x09, 0x52, 0x06, 0x72, 0x6f, 0x75, 0x74, 0x65, 0x73, 0x22, 0x51, 0x0a, 0x2b,
|
|
|
|
|
|
0x43, 0x6f, 0x75, 0x6e, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x4e,
|
|
|
|
|
|
0x6f, 0x64, 0x65, 0x73, 0x57, 0x69, 0x74, 0x68, 0x4e, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x67, 0x69,
|
|
|
|
|
|
0x6f, 0x6e, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x22, 0x0a, 0x0c, 0x6e,
|
|
|
|
|
|
0x6f, 0x64, 0x65, 0x52, 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
|
|
|
|
|
|
0x03, 0x52, 0x0c, 0x6e, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x22,
|
|
|
|
|
|
0x3a, 0x0a, 0x1e, 0x46, 0x69, 0x6e, 0x64, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x4e, 0x6f,
|
|
|
|
|
|
0x64, 0x65, 0x73, 0x57, 0x69, 0x74, 0x68, 0x49, 0x64, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
|
|
|
|
|
|
0x74, 0x12, 0x18, 0x0a, 0x07, 0x6e, 0x6f, 0x64, 0x65, 0x49, 0x64, 0x73, 0x18, 0x01, 0x20, 0x03,
|
|
|
|
|
|
0x28, 0x03, 0x52, 0x07, 0x6e, 0x6f, 0x64, 0x65, 0x49, 0x64, 0x73, 0x22, 0x41, 0x0a, 0x1f, 0x46,
|
|
|
|
|
|
0x69, 0x6e, 0x64, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x4e, 0x6f, 0x64, 0x65, 0x73, 0x57,
|
|
|
|
|
|
0x69, 0x74, 0x68, 0x49, 0x64, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1e,
|
|
|
|
|
|
0x0a, 0x05, 0x6e, 0x6f, 0x64, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x08, 0x2e,
|
|
|
|
|
|
0x70, 0x62, 0x2e, 0x4e, 0x6f, 0x64, 0x65, 0x52, 0x05, 0x6e, 0x6f, 0x64, 0x65, 0x73, 0x22, 0x6b,
|
|
|
|
|
|
0x0a, 0x1d, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x4e, 0x6f, 0x64, 0x65, 0x4c, 0x61, 0x74, 0x65, 0x73,
|
|
|
|
|
|
0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
|
|
|
|
|
|
0x0e, 0x0a, 0x02, 0x6f, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x6f, 0x73, 0x12,
|
|
|
|
|
|
0x12, 0x0a, 0x04, 0x61, 0x72, 0x63, 0x68, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x61,
|
|
|
|
|
|
0x72, 0x63, 0x68, 0x12, 0x26, 0x0a, 0x0e, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x56, 0x65,
|
|
|
|
|
|
0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x63, 0x75, 0x72,
|
|
|
|
|
|
0x72, 0x65, 0x6e, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x22, 0x66, 0x0a, 0x1e, 0x43,
|
|
|
|
|
|
0x68, 0x65, 0x63, 0x6b, 0x4e, 0x6f, 0x64, 0x65, 0x4c, 0x61, 0x74, 0x65, 0x73, 0x74, 0x56, 0x65,
|
|
|
|
|
|
0x72, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x24, 0x0a,
|
|
|
|
|
|
0x0d, 0x68, 0x61, 0x73, 0x4e, 0x65, 0x77, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x01,
|
|
|
|
|
|
0x20, 0x01, 0x28, 0x08, 0x52, 0x0d, 0x68, 0x61, 0x73, 0x4e, 0x65, 0x77, 0x56, 0x65, 0x72, 0x73,
|
|
|
|
|
|
0x69, 0x6f, 0x6e, 0x12, 0x1e, 0x0a, 0x0a, 0x6e, 0x65, 0x77, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f,
|
|
|
|
|
|
0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x6e, 0x65, 0x77, 0x56, 0x65, 0x72, 0x73,
|
|
|
|
|
|
0x69, 0x6f, 0x6e, 0x22, 0x41, 0x0a, 0x13, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4e, 0x6f, 0x64,
|
|
|
|
|
|
0x65, 0x55, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x6f,
|
|
|
|
|
|
0x64, 0x65, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x6f, 0x64, 0x65,
|
|
|
|
|
|
0x49, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x69, 0x73, 0x55, 0x70, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08,
|
|
|
|
|
|
0x52, 0x04, 0x69, 0x73, 0x55, 0x70, 0x22, 0x6b, 0x0a, 0x23, 0x44, 0x6f, 0x77, 0x6e, 0x6c, 0x6f,
|
|
|
|
|
|
0x61, 0x64, 0x4e, 0x6f, 0x64, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x61, 0x74, 0x69,
|
|
|
|
|
|
0x6f, 0x6e, 0x46, 0x69, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x0e, 0x0a,
|
|
|
|
|
|
0x02, 0x6f, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x6f, 0x73, 0x12, 0x12, 0x0a,
|
|
|
|
|
|
0x04, 0x61, 0x72, 0x63, 0x68, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x61, 0x72, 0x63,
|
|
|
|
|
|
0x68, 0x12, 0x20, 0x0a, 0x0b, 0x63, 0x68, 0x75, 0x6e, 0x6b, 0x4f, 0x66, 0x66, 0x73, 0x65, 0x74,
|
|
|
|
|
|
0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x63, 0x68, 0x75, 0x6e, 0x6b, 0x4f, 0x66, 0x66,
|
|
|
|
|
|
0x73, 0x65, 0x74, 0x22, 0xa4, 0x01, 0x0a, 0x24, 0x44, 0x6f, 0x77, 0x6e, 0x6c, 0x6f, 0x61, 0x64,
|
|
|
|
|
|
0x4e, 0x6f, 0x64, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e,
|
|
|
|
|
|
0x46, 0x69, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1c, 0x0a, 0x09,
|
|
|
|
|
|
0x63, 0x68, 0x75, 0x6e, 0x6b, 0x44, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52,
|
|
|
|
|
|
0x09, 0x63, 0x68, 0x75, 0x6e, 0x6b, 0x44, 0x61, 0x74, 0x61, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x75,
|
|
|
|
|
|
0x6d, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x73, 0x75, 0x6d, 0x12, 0x16, 0x0a, 0x06,
|
|
|
|
|
|
0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6f, 0x66,
|
|
|
|
|
|
0x66, 0x73, 0x65, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18,
|
|
|
|
|
|
0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x1a,
|
|
|
|
|
|
0x0a, 0x08, 0x66, 0x69, 0x6c, 0x65, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09,
|
|
|
|
|
|
0x52, 0x08, 0x66, 0x69, 0x6c, 0x65, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x49, 0x0a, 0x17, 0x55, 0x70,
|
|
|
|
|
|
0x64, 0x61, 0x74, 0x65, 0x4e, 0x6f, 0x64, 0x65, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x52, 0x65,
|
|
|
|
|
|
0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x6f, 0x64, 0x65, 0x49, 0x64, 0x18,
|
|
|
|
|
|
0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x6f, 0x64, 0x65, 0x49, 0x64, 0x12, 0x16, 0x0a,
|
|
|
|
|
|
0x06, 0x6d, 0x61, 0x78, 0x43, 0x50, 0x55, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x6d,
|
|
|
|
|
|
0x61, 0x78, 0x43, 0x50, 0x55, 0x22, 0x98, 0x02, 0x0a, 0x16, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65,
|
|
|
|
|
|
0x4e, 0x6f, 0x64, 0x65, 0x43, 0x61, 0x63, 0x68, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
|
2023-03-18 22:15:13 +08:00
|
|
|
|
0x12, 0x16, 0x0a, 0x06, 0x6e, 0x6f, 0x64, 0x65, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03,
|
2023-05-17 18:42:35 +08:00
|
|
|
|
0x52, 0x06, 0x6e, 0x6f, 0x64, 0x65, 0x49, 0x64, 0x12, 0x44, 0x0a, 0x14, 0x6d, 0x61, 0x78, 0x43,
|
|
|
|
|
|
0x61, 0x63, 0x68, 0x65, 0x44, 0x69, 0x73, 0x6b, 0x43, 0x61, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79,
|
|
|
|
|
|
0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x70, 0x62, 0x2e, 0x53, 0x69, 0x7a, 0x65,
|
|
|
|
|
|
0x43, 0x61, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x52, 0x14, 0x6d, 0x61, 0x78, 0x43, 0x61, 0x63,
|
|
|
|
|
|
0x68, 0x65, 0x44, 0x69, 0x73, 0x6b, 0x43, 0x61, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x12, 0x48,
|
|
|
|
|
|
0x0a, 0x16, 0x6d, 0x61, 0x78, 0x43, 0x61, 0x63, 0x68, 0x65, 0x4d, 0x65, 0x6d, 0x6f, 0x72, 0x79,
|
|
|
|
|
|
0x43, 0x61, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x10,
|
|
|
|
|
|
0x2e, 0x70, 0x62, 0x2e, 0x53, 0x69, 0x7a, 0x65, 0x43, 0x61, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79,
|
|
|
|
|
|
0x52, 0x16, 0x6d, 0x61, 0x78, 0x43, 0x61, 0x63, 0x68, 0x65, 0x4d, 0x65, 0x6d, 0x6f, 0x72, 0x79,
|
|
|
|
|
|
0x43, 0x61, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x12, 0x22, 0x0a, 0x0c, 0x63, 0x61, 0x63, 0x68,
|
|
|
|
|
|
0x65, 0x44, 0x69, 0x73, 0x6b, 0x44, 0x69, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c,
|
|
|
|
|
|
0x63, 0x61, 0x63, 0x68, 0x65, 0x44, 0x69, 0x73, 0x6b, 0x44, 0x69, 0x72, 0x12, 0x32, 0x0a, 0x14,
|
|
|
|
|
|
0x63, 0x61, 0x63, 0x68, 0x65, 0x44, 0x69, 0x73, 0x6b, 0x53, 0x75, 0x62, 0x44, 0x69, 0x72, 0x73,
|
|
|
|
|
|
0x4a, 0x53, 0x4f, 0x4e, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x14, 0x63, 0x61, 0x63, 0x68,
|
|
|
|
|
|
0x65, 0x44, 0x69, 0x73, 0x6b, 0x53, 0x75, 0x62, 0x44, 0x69, 0x72, 0x73, 0x4a, 0x53, 0x4f, 0x4e,
|
|
|
|
|
|
0x22, 0x1a, 0x0a, 0x18, 0x46, 0x69, 0x6e, 0x64, 0x4e, 0x6f, 0x64, 0x65, 0x4c, 0x65, 0x76, 0x65,
|
|
|
|
|
|
0x6c, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0x61, 0x0a, 0x19,
|
|
|
|
|
|
0x46, 0x69, 0x6e, 0x64, 0x4e, 0x6f, 0x64, 0x65, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x49, 0x6e, 0x66,
|
|
|
|
|
|
0x6f, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x65, 0x76,
|
|
|
|
|
|
0x65, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x12,
|
|
|
|
|
|
0x2e, 0x0a, 0x12, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x4e, 0x6f, 0x64, 0x65, 0x73, 0x4d, 0x61,
|
|
|
|
|
|
0x70, 0x4a, 0x53, 0x4f, 0x4e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x12, 0x70, 0x61, 0x72,
|
|
|
|
|
|
0x65, 0x6e, 0x74, 0x4e, 0x6f, 0x64, 0x65, 0x73, 0x4d, 0x61, 0x70, 0x4a, 0x53, 0x4f, 0x4e, 0x22,
|
|
|
|
|
|
0x34, 0x0a, 0x1a, 0x46, 0x69, 0x6e, 0x64, 0x4e, 0x6f, 0x64, 0x65, 0x44, 0x4e, 0x53, 0x52, 0x65,
|
|
|
|
|
|
0x73, 0x6f, 0x6c, 0x76, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a,
|
|
|
|
|
|
0x06, 0x6e, 0x6f, 0x64, 0x65, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e,
|
|
|
|
|
|
0x6f, 0x64, 0x65, 0x49, 0x64, 0x22, 0x47, 0x0a, 0x1b, 0x46, 0x69, 0x6e, 0x64, 0x4e, 0x6f, 0x64,
|
|
|
|
|
|
0x65, 0x44, 0x4e, 0x53, 0x52, 0x65, 0x73, 0x6f, 0x6c, 0x76, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70,
|
|
|
|
|
|
0x6f, 0x6e, 0x73, 0x65, 0x12, 0x28, 0x0a, 0x0f, 0x64, 0x6e, 0x73, 0x52, 0x65, 0x73, 0x6f, 0x6c,
|
|
|
|
|
|
0x76, 0x65, 0x72, 0x4a, 0x53, 0x4f, 0x4e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0f, 0x64,
|
|
|
|
|
|
0x6e, 0x73, 0x52, 0x65, 0x73, 0x6f, 0x6c, 0x76, 0x65, 0x72, 0x4a, 0x53, 0x4f, 0x4e, 0x22, 0x60,
|
|
|
|
|
|
0x0a, 0x1c, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4e, 0x6f, 0x64, 0x65, 0x44, 0x4e, 0x53, 0x52,
|
|
|
|
|
|
0x65, 0x73, 0x6f, 0x6c, 0x76, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16,
|
2023-03-18 22:15:13 +08:00
|
|
|
|
0x0a, 0x06, 0x6e, 0x6f, 0x64, 0x65, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06,
|
2023-05-17 18:42:35 +08:00
|
|
|
|
0x6e, 0x6f, 0x64, 0x65, 0x49, 0x64, 0x12, 0x28, 0x0a, 0x0f, 0x64, 0x6e, 0x73, 0x52, 0x65, 0x73,
|
|
|
|
|
|
0x6f, 0x6c, 0x76, 0x65, 0x72, 0x4a, 0x53, 0x4f, 0x4e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0c, 0x52,
|
|
|
|
|
|
0x0f, 0x64, 0x6e, 0x73, 0x52, 0x65, 0x73, 0x6f, 0x6c, 0x76, 0x65, 0x72, 0x4a, 0x53, 0x4f, 0x4e,
|
|
|
|
|
|
0x22, 0x37, 0x0a, 0x1d, 0x46, 0x69, 0x6e, 0x64, 0x4e, 0x6f, 0x64, 0x65, 0x44, 0x44, 0x6f, 0x53,
|
|
|
|
|
|
0x50, 0x72, 0x6f, 0x74, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
|
|
|
|
|
|
0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x6f, 0x64, 0x65, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
|
|
|
|
|
|
0x03, 0x52, 0x06, 0x6e, 0x6f, 0x64, 0x65, 0x49, 0x64, 0x22, 0x50, 0x0a, 0x1e, 0x46, 0x69, 0x6e,
|
|
|
|
|
|
0x64, 0x4e, 0x6f, 0x64, 0x65, 0x44, 0x44, 0x6f, 0x53, 0x50, 0x72, 0x6f, 0x74, 0x65, 0x63, 0x74,
|
|
|
|
|
|
0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x2e, 0x0a, 0x12, 0x64,
|
2023-03-18 16:04:27 +08:00
|
|
|
|
0x64, 0x6f, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x4a, 0x53, 0x4f,
|
2023-05-17 18:42:35 +08:00
|
|
|
|
0x4e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x12, 0x64, 0x64, 0x6f, 0x73, 0x50, 0x72, 0x6f,
|
|
|
|
|
|
0x74, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x4a, 0x53, 0x4f, 0x4e, 0x22, 0x69, 0x0a, 0x1f, 0x55,
|
|
|
|
|
|
0x70, 0x64, 0x61, 0x74, 0x65, 0x4e, 0x6f, 0x64, 0x65, 0x44, 0x44, 0x6f, 0x53, 0x50, 0x72, 0x6f,
|
|
|
|
|
|
0x74, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16,
|
|
|
|
|
|
0x0a, 0x06, 0x6e, 0x6f, 0x64, 0x65, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06,
|
|
|
|
|
|
0x6e, 0x6f, 0x64, 0x65, 0x49, 0x64, 0x12, 0x2e, 0x0a, 0x12, 0x64, 0x64, 0x6f, 0x73, 0x50, 0x72,
|
|
|
|
|
|
0x6f, 0x74, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x4a, 0x53, 0x4f, 0x4e, 0x18, 0x02, 0x20, 0x01,
|
|
|
|
|
|
0x28, 0x0c, 0x52, 0x12, 0x64, 0x64, 0x6f, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x65, 0x63, 0x74, 0x69,
|
|
|
|
|
|
0x6f, 0x6e, 0x4a, 0x53, 0x4f, 0x4e, 0x22, 0x3b, 0x0a, 0x21, 0x46, 0x69, 0x6e, 0x64, 0x4e, 0x6f,
|
|
|
|
|
|
0x64, 0x65, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x43, 0x6f,
|
|
|
|
|
|
0x6e, 0x66, 0x69, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e,
|
|
|
|
|
|
0x6f, 0x64, 0x65, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x6f, 0x64,
|
|
|
|
|
|
0x65, 0x49, 0x64, 0x22, 0x5c, 0x0a, 0x22, 0x46, 0x69, 0x6e, 0x64, 0x4e, 0x6f, 0x64, 0x65, 0x47,
|
|
|
|
|
|
0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x43, 0x6f, 0x6e, 0x66, 0x69,
|
|
|
|
|
|
0x67, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x36, 0x0a, 0x16, 0x67, 0x6c, 0x6f,
|
|
|
|
|
|
0x62, 0x61, 0x6c, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x4a,
|
|
|
|
|
|
0x53, 0x4f, 0x4e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x16, 0x67, 0x6c, 0x6f, 0x62, 0x61,
|
|
|
|
|
|
0x6c, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x4a, 0x53, 0x4f,
|
|
|
|
|
|
0x4e, 0x22, 0x3a, 0x0a, 0x20, 0x46, 0x69, 0x6e, 0x64, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64,
|
|
|
|
|
|
0x4e, 0x6f, 0x64, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65,
|
|
|
|
|
|
0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x6f, 0x64, 0x65, 0x49, 0x64, 0x18,
|
|
|
|
|
|
0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x6f, 0x64, 0x65, 0x49, 0x64, 0x22, 0xb3, 0x02,
|
|
|
|
|
|
0x0a, 0x21, 0x46, 0x69, 0x6e, 0x64, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x4e, 0x6f, 0x64,
|
|
|
|
|
|
0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x6f,
|
|
|
|
|
|
0x6e, 0x73, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x68, 0x61, 0x73, 0x44, 0x4e, 0x53, 0x49, 0x6e, 0x66,
|
|
|
|
|
|
0x6f, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0a, 0x68, 0x61, 0x73, 0x44, 0x4e, 0x53, 0x49,
|
|
|
|
|
|
0x6e, 0x66, 0x6f, 0x12, 0x22, 0x0a, 0x0c, 0x68, 0x61, 0x73, 0x43, 0x61, 0x63, 0x68, 0x65, 0x49,
|
|
|
|
|
|
0x6e, 0x66, 0x6f, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0c, 0x68, 0x61, 0x73, 0x43, 0x61,
|
|
|
|
|
|
0x63, 0x68, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x24, 0x0a, 0x0d, 0x68, 0x61, 0x73, 0x54, 0x68,
|
|
|
|
|
|
0x72, 0x65, 0x73, 0x68, 0x6f, 0x6c, 0x64, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0d,
|
|
|
|
|
|
0x68, 0x61, 0x73, 0x54, 0x68, 0x72, 0x65, 0x73, 0x68, 0x6f, 0x6c, 0x64, 0x73, 0x12, 0x16, 0x0a,
|
|
|
|
|
|
0x06, 0x68, 0x61, 0x73, 0x53, 0x53, 0x48, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x68,
|
|
|
|
|
|
0x61, 0x73, 0x53, 0x53, 0x48, 0x12, 0x2c, 0x0a, 0x11, 0x68, 0x61, 0x73, 0x53, 0x79, 0x73, 0x74,
|
|
|
|
|
|
0x65, 0x6d, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x08,
|
|
|
|
|
|
0x52, 0x11, 0x68, 0x61, 0x73, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x53, 0x65, 0x74, 0x74, 0x69,
|
|
|
|
|
|
0x6e, 0x67, 0x73, 0x12, 0x2c, 0x0a, 0x11, 0x68, 0x61, 0x73, 0x44, 0x44, 0x6f, 0x53, 0x50, 0x72,
|
|
|
|
|
|
0x6f, 0x74, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x06, 0x20, 0x01, 0x28, 0x08, 0x52, 0x11,
|
|
|
|
|
|
0x68, 0x61, 0x73, 0x44, 0x44, 0x6f, 0x53, 0x50, 0x72, 0x6f, 0x74, 0x65, 0x63, 0x74, 0x69, 0x6f,
|
|
|
|
|
|
0x6e, 0x12, 0x30, 0x0a, 0x13, 0x68, 0x61, 0x73, 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65,
|
|
|
|
|
|
0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x18, 0x07, 0x20, 0x01, 0x28, 0x08, 0x52, 0x13,
|
|
|
|
|
|
0x68, 0x61, 0x73, 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x53, 0x65, 0x74, 0x74, 0x69,
|
|
|
|
|
|
0x6e, 0x67, 0x73, 0x22, 0x43, 0x0a, 0x1d, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x41, 0x6c, 0x6c, 0x4e,
|
|
|
|
|
|
0x6f, 0x64, 0x65, 0x52, 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71,
|
|
|
|
|
|
0x75, 0x65, 0x73, 0x74, 0x12, 0x22, 0x0a, 0x0c, 0x6e, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x67, 0x69,
|
|
|
|
|
|
0x6f, 0x6e, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0c, 0x6e, 0x6f, 0x64, 0x65,
|
|
|
|
|
|
0x52, 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x22, 0x6b, 0x0a, 0x19, 0x4c, 0x69, 0x73, 0x74,
|
|
|
|
|
|
0x4e, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65,
|
|
|
|
|
|
0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x22, 0x0a, 0x0c, 0x6e, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x67,
|
|
|
|
|
|
0x69, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0c, 0x6e, 0x6f, 0x64,
|
|
|
|
|
|
0x65, 0x52, 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66,
|
|
|
|
|
|
0x73, 0x65, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65,
|
|
|
|
|
|
0x74, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52,
|
|
|
|
|
|
0x04, 0x73, 0x69, 0x7a, 0x65, 0x22, 0xed, 0x01, 0x0a, 0x1a, 0x4c, 0x69, 0x73, 0x74, 0x4e, 0x6f,
|
|
|
|
|
|
0x64, 0x65, 0x52, 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70,
|
|
|
|
|
|
0x6f, 0x6e, 0x73, 0x65, 0x12, 0x3f, 0x0a, 0x08, 0x69, 0x6e, 0x66, 0x6f, 0x4c, 0x69, 0x73, 0x74,
|
|
|
|
|
|
0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x70, 0x62, 0x2e, 0x4c, 0x69, 0x73, 0x74,
|
|
|
|
|
|
0x4e, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65,
|
|
|
|
|
|
0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x08, 0x69, 0x6e, 0x66,
|
|
|
|
|
|
0x6f, 0x4c, 0x69, 0x73, 0x74, 0x1a, 0x8d, 0x01, 0x0a, 0x04, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x0e,
|
|
|
|
|
|
0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12,
|
|
|
|
|
|
0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61,
|
|
|
|
|
|
0x6d, 0x65, 0x12, 0x2e, 0x0a, 0x0a, 0x6e, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x67, 0x69, 0x6f, 0x6e,
|
|
|
|
|
|
0x18, 0x0a, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x70, 0x62, 0x2e, 0x4e, 0x6f, 0x64, 0x65,
|
|
|
|
|
|
0x52, 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x52, 0x0a, 0x6e, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x67, 0x69,
|
|
|
|
|
|
0x6f, 0x6e, 0x12, 0x31, 0x0a, 0x0b, 0x6e, 0x6f, 0x64, 0x65, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65,
|
|
|
|
|
|
0x72, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x4e, 0x6f, 0x64,
|
|
|
|
|
|
0x65, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x52, 0x0b, 0x6e, 0x6f, 0x64, 0x65, 0x43, 0x6c,
|
|
|
|
|
|
0x75, 0x73, 0x74, 0x65, 0x72, 0x22, 0x59, 0x0a, 0x1b, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4e,
|
|
|
|
|
|
0x6f, 0x64, 0x65, 0x52, 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71,
|
2023-03-18 22:15:13 +08:00
|
|
|
|
0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x6f, 0x64, 0x65, 0x49, 0x64, 0x18, 0x01,
|
2023-05-17 18:42:35 +08:00
|
|
|
|
0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x6f, 0x64, 0x65, 0x49, 0x64, 0x12, 0x22, 0x0a, 0x0c,
|
|
|
|
|
|
0x6e, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01,
|
|
|
|
|
|
0x28, 0x03, 0x52, 0x0c, 0x6e, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x49, 0x64,
|
|
|
|
|
|
0x22, 0x32, 0x0a, 0x18, 0x46, 0x69, 0x6e, 0x64, 0x4e, 0x6f, 0x64, 0x65, 0x41, 0x50, 0x49, 0x43,
|
|
|
|
|
|
0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06,
|
|
|
|
|
|
0x6e, 0x6f, 0x64, 0x65, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x6f,
|
|
|
|
|
|
0x64, 0x65, 0x49, 0x64, 0x22, 0x47, 0x0a, 0x19, 0x46, 0x69, 0x6e, 0x64, 0x4e, 0x6f, 0x64, 0x65,
|
|
|
|
|
|
0x41, 0x50, 0x49, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
|
|
|
|
|
|
0x65, 0x12, 0x2a, 0x0a, 0x10, 0x61, 0x70, 0x69, 0x4e, 0x6f, 0x64, 0x65, 0x41, 0x64, 0x64, 0x72,
|
|
|
|
|
|
0x73, 0x4a, 0x53, 0x4f, 0x4e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x10, 0x61, 0x70, 0x69,
|
|
|
|
|
|
0x4e, 0x6f, 0x64, 0x65, 0x41, 0x64, 0x64, 0x72, 0x73, 0x4a, 0x53, 0x4f, 0x4e, 0x22, 0x60, 0x0a,
|
|
|
|
|
|
0x1a, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4e, 0x6f, 0x64, 0x65, 0x41, 0x50, 0x49, 0x43, 0x6f,
|
|
|
|
|
|
0x6e, 0x66, 0x69, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e,
|
2023-03-18 22:15:13 +08:00
|
|
|
|
0x6f, 0x64, 0x65, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x6f, 0x64,
|
2023-05-17 18:42:35 +08:00
|
|
|
|
0x65, 0x49, 0x64, 0x12, 0x2a, 0x0a, 0x10, 0x61, 0x70, 0x69, 0x4e, 0x6f, 0x64, 0x65, 0x41, 0x64,
|
|
|
|
|
|
0x64, 0x72, 0x73, 0x4a, 0x53, 0x4f, 0x4e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x10, 0x61,
|
|
|
|
|
|
0x70, 0x69, 0x4e, 0x6f, 0x64, 0x65, 0x41, 0x64, 0x64, 0x72, 0x73, 0x4a, 0x53, 0x4f, 0x4e, 0x22,
|
2023-07-24 09:56:49 +08:00
|
|
|
|
0x1c, 0x0a, 0x1a, 0x46, 0x69, 0x6e, 0x64, 0x4e, 0x6f, 0x64, 0x65, 0x55, 0x41, 0x4d, 0x50, 0x6f,
|
|
|
|
|
|
0x6c, 0x69, 0x63, 0x69, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0xc3, 0x01,
|
|
|
|
|
|
0x0a, 0x1b, 0x46, 0x69, 0x6e, 0x64, 0x4e, 0x6f, 0x64, 0x65, 0x55, 0x41, 0x4d, 0x50, 0x6f, 0x6c,
|
|
|
|
|
|
0x69, 0x63, 0x69, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x4b, 0x0a,
|
|
|
|
|
|
0x0b, 0x75, 0x61, 0x6d, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x69, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03,
|
|
|
|
|
|
0x28, 0x0b, 0x32, 0x29, 0x2e, 0x70, 0x62, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x4e, 0x6f, 0x64, 0x65,
|
|
|
|
|
|
0x55, 0x41, 0x4d, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x69, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f,
|
|
|
|
|
|
0x6e, 0x73, 0x65, 0x2e, 0x55, 0x41, 0x4d, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x52, 0x0b, 0x75,
|
|
|
|
|
|
0x61, 0x6d, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x69, 0x65, 0x73, 0x1a, 0x57, 0x0a, 0x09, 0x55, 0x41,
|
|
|
|
|
|
0x4d, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x12, 0x24, 0x0a, 0x0d, 0x6e, 0x6f, 0x64, 0x65, 0x43,
|
|
|
|
|
|
0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0d,
|
|
|
|
|
|
0x6e, 0x6f, 0x64, 0x65, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x49, 0x64, 0x12, 0x24, 0x0a,
|
|
|
|
|
|
0x0d, 0x75, 0x61, 0x6d, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x4a, 0x53, 0x4f, 0x4e, 0x18, 0x02,
|
|
|
|
|
|
0x20, 0x01, 0x28, 0x0c, 0x52, 0x0d, 0x75, 0x61, 0x6d, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x4a,
|
|
|
|
|
|
0x53, 0x4f, 0x4e, 0x22, 0x1f, 0x0a, 0x1d, 0x46, 0x69, 0x6e, 0x64, 0x4e, 0x6f, 0x64, 0x65, 0x48,
|
|
|
|
|
|
0x54, 0x54, 0x50, 0x43, 0x43, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x69, 0x65, 0x73, 0x52, 0x65, 0x71,
|
|
|
|
|
|
0x75, 0x65, 0x73, 0x74, 0x22, 0xdb, 0x01, 0x0a, 0x1e, 0x46, 0x69, 0x6e, 0x64, 0x4e, 0x6f, 0x64,
|
2023-05-23 19:16:09 +08:00
|
|
|
|
0x65, 0x48, 0x54, 0x54, 0x50, 0x43, 0x43, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x69, 0x65, 0x73, 0x52,
|
|
|
|
|
|
0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x57, 0x0a, 0x0e, 0x68, 0x74, 0x74, 0x70, 0x43,
|
|
|
|
|
|
0x43, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x69, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32,
|
|
|
|
|
|
0x2f, 0x2e, 0x70, 0x62, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x4e, 0x6f, 0x64, 0x65, 0x48, 0x54, 0x54,
|
|
|
|
|
|
0x50, 0x43, 0x43, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x69, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f,
|
|
|
|
|
|
0x6e, 0x73, 0x65, 0x2e, 0x48, 0x54, 0x54, 0x50, 0x43, 0x43, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79,
|
|
|
|
|
|
0x52, 0x0e, 0x68, 0x74, 0x74, 0x70, 0x43, 0x43, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x69, 0x65, 0x73,
|
|
|
|
|
|
0x1a, 0x60, 0x0a, 0x0c, 0x48, 0x54, 0x54, 0x50, 0x43, 0x43, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79,
|
|
|
|
|
|
0x12, 0x24, 0x0a, 0x0d, 0x6e, 0x6f, 0x64, 0x65, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x49,
|
|
|
|
|
|
0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0d, 0x6e, 0x6f, 0x64, 0x65, 0x43, 0x6c, 0x75,
|
|
|
|
|
|
0x73, 0x74, 0x65, 0x72, 0x49, 0x64, 0x12, 0x2a, 0x0a, 0x10, 0x68, 0x74, 0x74, 0x70, 0x43, 0x43,
|
|
|
|
|
|
0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x4a, 0x53, 0x4f, 0x4e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0c,
|
|
|
|
|
|
0x52, 0x10, 0x68, 0x74, 0x74, 0x70, 0x43, 0x43, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x4a, 0x53,
|
2023-07-24 09:56:49 +08:00
|
|
|
|
0x4f, 0x4e, 0x22, 0x1e, 0x0a, 0x1c, 0x46, 0x69, 0x6e, 0x64, 0x4e, 0x6f, 0x64, 0x65, 0x48, 0x54,
|
2023-06-01 17:48:01 +08:00
|
|
|
|
0x54, 0x50, 0x33, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x69, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65,
|
2023-07-24 09:56:49 +08:00
|
|
|
|
0x73, 0x74, 0x22, 0xd3, 0x01, 0x0a, 0x1d, 0x46, 0x69, 0x6e, 0x64, 0x4e, 0x6f, 0x64, 0x65, 0x48,
|
|
|
|
|
|
0x54, 0x54, 0x50, 0x33, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x69, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70,
|
|
|
|
|
|
0x6f, 0x6e, 0x73, 0x65, 0x12, 0x53, 0x0a, 0x0d, 0x68, 0x74, 0x74, 0x70, 0x33, 0x50, 0x6f, 0x6c,
|
|
|
|
|
|
0x69, 0x63, 0x69, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2d, 0x2e, 0x70, 0x62,
|
|
|
|
|
|
0x2e, 0x46, 0x69, 0x6e, 0x64, 0x4e, 0x6f, 0x64, 0x65, 0x48, 0x54, 0x54, 0x50, 0x33, 0x50, 0x6f,
|
|
|
|
|
|
0x6c, 0x69, 0x63, 0x69, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x48,
|
|
|
|
|
|
0x54, 0x54, 0x50, 0x33, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x52, 0x0d, 0x68, 0x74, 0x74, 0x70,
|
|
|
|
|
|
0x33, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x69, 0x65, 0x73, 0x1a, 0x5d, 0x0a, 0x0b, 0x48, 0x54, 0x54,
|
|
|
|
|
|
0x50, 0x33, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x12, 0x24, 0x0a, 0x0d, 0x6e, 0x6f, 0x64, 0x65,
|
|
|
|
|
|
0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52,
|
|
|
|
|
|
0x0d, 0x6e, 0x6f, 0x64, 0x65, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x49, 0x64, 0x12, 0x28,
|
|
|
|
|
|
0x0a, 0x0f, 0x68, 0x74, 0x74, 0x70, 0x33, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x4a, 0x53, 0x4f,
|
|
|
|
|
|
0x4e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0f, 0x68, 0x74, 0x74, 0x70, 0x33, 0x50, 0x6f,
|
|
|
|
|
|
0x6c, 0x69, 0x63, 0x79, 0x4a, 0x53, 0x4f, 0x4e, 0x22, 0x22, 0x0a, 0x20, 0x46, 0x69, 0x6e, 0x64,
|
|
|
|
|
|
0x4e, 0x6f, 0x64, 0x65, 0x48, 0x54, 0x54, 0x50, 0x50, 0x61, 0x67, 0x65, 0x73, 0x50, 0x6f, 0x6c,
|
|
|
|
|
|
0x69, 0x63, 0x69, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0xf3, 0x01, 0x0a,
|
2023-06-01 17:48:01 +08:00
|
|
|
|
0x21, 0x46, 0x69, 0x6e, 0x64, 0x4e, 0x6f, 0x64, 0x65, 0x48, 0x54, 0x54, 0x50, 0x50, 0x61, 0x67,
|
|
|
|
|
|
0x65, 0x73, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x69, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
|
|
|
|
|
|
0x73, 0x65, 0x12, 0x63, 0x0a, 0x11, 0x68, 0x74, 0x74, 0x70, 0x50, 0x61, 0x67, 0x65, 0x73, 0x50,
|
|
|
|
|
|
0x6f, 0x6c, 0x69, 0x63, 0x69, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x35, 0x2e,
|
|
|
|
|
|
0x70, 0x62, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x4e, 0x6f, 0x64, 0x65, 0x48, 0x54, 0x54, 0x50, 0x50,
|
|
|
|
|
|
0x61, 0x67, 0x65, 0x73, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x69, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70,
|
|
|
|
|
|
0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x48, 0x54, 0x54, 0x50, 0x50, 0x61, 0x67, 0x65, 0x73, 0x50, 0x6f,
|
|
|
|
|
|
0x6c, 0x69, 0x63, 0x79, 0x52, 0x11, 0x68, 0x74, 0x74, 0x70, 0x50, 0x61, 0x67, 0x65, 0x73, 0x50,
|
|
|
|
|
|
0x6f, 0x6c, 0x69, 0x63, 0x69, 0x65, 0x73, 0x1a, 0x69, 0x0a, 0x0f, 0x48, 0x54, 0x54, 0x50, 0x50,
|
|
|
|
|
|
0x61, 0x67, 0x65, 0x73, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x12, 0x24, 0x0a, 0x0d, 0x6e, 0x6f,
|
|
|
|
|
|
0x64, 0x65, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
|
|
|
|
|
|
0x03, 0x52, 0x0d, 0x6e, 0x6f, 0x64, 0x65, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x49, 0x64,
|
|
|
|
|
|
0x12, 0x30, 0x0a, 0x13, 0x68, 0x74, 0x74, 0x70, 0x50, 0x61, 0x67, 0x65, 0x73, 0x50, 0x6f, 0x6c,
|
|
|
|
|
|
0x69, 0x63, 0x79, 0x4a, 0x53, 0x4f, 0x4e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x13, 0x68,
|
|
|
|
|
|
0x74, 0x74, 0x70, 0x50, 0x61, 0x67, 0x65, 0x73, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x4a, 0x53,
|
|
|
|
|
|
0x4f, 0x4e, 0x22, 0x35, 0x0a, 0x1b, 0x46, 0x69, 0x6e, 0x64, 0x4e, 0x6f, 0x64, 0x65, 0x53, 0x63,
|
|
|
|
|
|
0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
|
2023-05-23 19:16:09 +08:00
|
|
|
|
0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x6f, 0x64, 0x65, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
|
2023-06-01 17:48:01 +08:00
|
|
|
|
0x03, 0x52, 0x06, 0x6e, 0x6f, 0x64, 0x65, 0x49, 0x64, 0x22, 0xc8, 0x02, 0x0a, 0x1c, 0x46, 0x69,
|
|
|
|
|
|
0x6e, 0x64, 0x4e, 0x6f, 0x64, 0x65, 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x49, 0x6e,
|
|
|
|
|
|
0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x51, 0x0a, 0x0c, 0x73, 0x63,
|
|
|
|
|
|
0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b,
|
|
|
|
|
|
0x32, 0x2d, 0x2e, 0x70, 0x62, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x4e, 0x6f, 0x64, 0x65, 0x53, 0x63,
|
|
|
|
|
|
0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
|
|
|
|
|
|
0x73, 0x65, 0x2e, 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52,
|
|
|
|
|
|
0x0c, 0x73, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x1a, 0xd4, 0x01,
|
|
|
|
|
|
0x0a, 0x0c, 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x1e,
|
|
|
|
|
|
0x0a, 0x0a, 0x6f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x44, 0x61, 0x79, 0x18, 0x01, 0x20, 0x01,
|
|
|
|
|
|
0x28, 0x09, 0x52, 0x0a, 0x6f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x44, 0x61, 0x79, 0x12, 0x2e,
|
|
|
|
|
|
0x0a, 0x12, 0x69, 0x73, 0x42, 0x61, 0x63, 0x6b, 0x75, 0x70, 0x46, 0x6f, 0x72, 0x43, 0x6c, 0x75,
|
|
|
|
|
|
0x73, 0x74, 0x65, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x12, 0x69, 0x73, 0x42, 0x61,
|
|
|
|
|
|
0x63, 0x6b, 0x75, 0x70, 0x46, 0x6f, 0x72, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x12, 0x2a,
|
|
|
|
|
|
0x0a, 0x10, 0x69, 0x73, 0x42, 0x61, 0x63, 0x6b, 0x75, 0x70, 0x46, 0x6f, 0x72, 0x47, 0x72, 0x6f,
|
|
|
|
|
|
0x75, 0x70, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x10, 0x69, 0x73, 0x42, 0x61, 0x63, 0x6b,
|
|
|
|
|
|
0x75, 0x70, 0x46, 0x6f, 0x72, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x12, 0x1c, 0x0a, 0x09, 0x62, 0x61,
|
|
|
|
|
|
0x63, 0x6b, 0x75, 0x70, 0x49, 0x50, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x09, 0x52, 0x09, 0x62,
|
|
|
|
|
|
0x61, 0x63, 0x6b, 0x75, 0x70, 0x49, 0x50, 0x73, 0x12, 0x2a, 0x0a, 0x10, 0x61, 0x63, 0x74, 0x69,
|
|
|
|
|
|
0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x4a, 0x53, 0x4f, 0x4e, 0x18, 0x05, 0x20, 0x01,
|
|
|
|
|
|
0x28, 0x0c, 0x52, 0x10, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,
|
|
|
|
|
|
0x4a, 0x53, 0x4f, 0x4e, 0x22, 0xd1, 0x01, 0x0a, 0x1d, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4e,
|
|
|
|
|
|
0x6f, 0x64, 0x65, 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52,
|
|
|
|
|
|
0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x6f, 0x64, 0x65, 0x49, 0x64,
|
|
|
|
|
|
0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x6f, 0x64, 0x65, 0x49, 0x64, 0x12, 0x1e,
|
|
|
|
|
|
0x0a, 0x0a, 0x6f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x44, 0x61, 0x79, 0x18, 0x02, 0x20, 0x01,
|
|
|
|
|
|
0x28, 0x09, 0x52, 0x0a, 0x6f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x44, 0x61, 0x79, 0x12, 0x2e,
|
|
|
|
|
|
0x0a, 0x12, 0x69, 0x73, 0x42, 0x61, 0x63, 0x6b, 0x75, 0x70, 0x46, 0x6f, 0x72, 0x43, 0x6c, 0x75,
|
|
|
|
|
|
0x73, 0x74, 0x65, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x12, 0x69, 0x73, 0x42, 0x61,
|
|
|
|
|
|
0x63, 0x6b, 0x75, 0x70, 0x46, 0x6f, 0x72, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x12, 0x2a,
|
|
|
|
|
|
0x0a, 0x10, 0x69, 0x73, 0x42, 0x61, 0x63, 0x6b, 0x75, 0x70, 0x46, 0x6f, 0x72, 0x47, 0x72, 0x6f,
|
|
|
|
|
|
0x75, 0x70, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x10, 0x69, 0x73, 0x42, 0x61, 0x63, 0x6b,
|
|
|
|
|
|
0x75, 0x70, 0x46, 0x6f, 0x72, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x12, 0x1c, 0x0a, 0x09, 0x62, 0x61,
|
|
|
|
|
|
0x63, 0x6b, 0x75, 0x70, 0x49, 0x50, 0x73, 0x18, 0x05, 0x20, 0x03, 0x28, 0x09, 0x52, 0x09, 0x62,
|
|
|
|
|
|
0x61, 0x63, 0x6b, 0x75, 0x70, 0x49, 0x50, 0x73, 0x22, 0x36, 0x0a, 0x1c, 0x52, 0x65, 0x73, 0x65,
|
|
|
|
|
|
0x74, 0x4e, 0x6f, 0x64, 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75,
|
|
|
|
|
|
0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x6f, 0x64, 0x65,
|
|
|
|
|
|
0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x6f, 0x64, 0x65, 0x49, 0x64,
|
|
|
|
|
|
0x22, 0x57, 0x0a, 0x2f, 0x46, 0x69, 0x6e, 0x64, 0x41, 0x6c, 0x6c, 0x4e, 0x6f, 0x64, 0x65, 0x53,
|
|
|
|
|
|
0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x57, 0x69, 0x74, 0x68, 0x4e,
|
|
|
|
|
|
0x6f, 0x64, 0x65, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75,
|
|
|
|
|
|
0x65, 0x73, 0x74, 0x12, 0x24, 0x0a, 0x0d, 0x6e, 0x6f, 0x64, 0x65, 0x43, 0x6c, 0x75, 0x73, 0x74,
|
|
|
|
|
|
0x65, 0x72, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0d, 0x6e, 0x6f, 0x64, 0x65,
|
|
|
|
|
|
0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x49, 0x64, 0x22, 0xde, 0x03, 0x0a, 0x30, 0x46, 0x69,
|
|
|
|
|
|
0x6e, 0x64, 0x41, 0x6c, 0x6c, 0x4e, 0x6f, 0x64, 0x65, 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c,
|
|
|
|
|
|
0x65, 0x49, 0x6e, 0x66, 0x6f, 0x57, 0x69, 0x74, 0x68, 0x4e, 0x6f, 0x64, 0x65, 0x43, 0x6c, 0x75,
|
|
|
|
|
|
0x73, 0x74, 0x65, 0x72, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x57,
|
|
|
|
|
|
0x0a, 0x05, 0x6e, 0x6f, 0x64, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x41, 0x2e,
|
|
|
|
|
|
0x70, 0x62, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x41, 0x6c, 0x6c, 0x4e, 0x6f, 0x64, 0x65, 0x53, 0x63,
|
|
|
|
|
|
0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x57, 0x69, 0x74, 0x68, 0x4e, 0x6f,
|
|
|
|
|
|
0x64, 0x65, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f,
|
|
|
|
|
|
0x6e, 0x73, 0x65, 0x2e, 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x49, 0x6e, 0x66, 0x6f,
|
|
|
|
|
|
0x52, 0x05, 0x6e, 0x6f, 0x64, 0x65, 0x73, 0x1a, 0xd0, 0x02, 0x0a, 0x0c, 0x53, 0x63, 0x68, 0x65,
|
|
|
|
|
|
0x64, 0x75, 0x6c, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x6f, 0x64, 0x65,
|
|
|
|
|
|
0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x6f, 0x64, 0x65, 0x49, 0x64,
|
|
|
|
|
|
0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x6f, 0x64, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01,
|
|
|
|
|
|
0x28, 0x09, 0x52, 0x08, 0x6e, 0x6f, 0x64, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x20, 0x0a, 0x0b,
|
|
|
|
|
|
0x6e, 0x6f, 0x64, 0x65, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28,
|
|
|
|
|
|
0x03, 0x52, 0x0b, 0x6e, 0x6f, 0x64, 0x65, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x49, 0x64, 0x12, 0x24,
|
|
|
|
|
|
0x0a, 0x0d, 0x6e, 0x6f, 0x64, 0x65, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x4e, 0x61, 0x6d, 0x65, 0x18,
|
|
|
|
|
|
0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x6e, 0x6f, 0x64, 0x65, 0x47, 0x72, 0x6f, 0x75, 0x70,
|
|
|
|
|
|
0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x6f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x44,
|
|
|
|
|
|
0x61, 0x79, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x6f, 0x66, 0x66, 0x6c, 0x69, 0x6e,
|
|
|
|
|
|
0x65, 0x44, 0x61, 0x79, 0x12, 0x2e, 0x0a, 0x12, 0x69, 0x73, 0x42, 0x61, 0x63, 0x6b, 0x75, 0x70,
|
|
|
|
|
|
0x46, 0x6f, 0x72, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x18, 0x06, 0x20, 0x01, 0x28, 0x08,
|
|
|
|
|
|
0x52, 0x12, 0x69, 0x73, 0x42, 0x61, 0x63, 0x6b, 0x75, 0x70, 0x46, 0x6f, 0x72, 0x43, 0x6c, 0x75,
|
|
|
|
|
|
0x73, 0x74, 0x65, 0x72, 0x12, 0x2a, 0x0a, 0x10, 0x69, 0x73, 0x42, 0x61, 0x63, 0x6b, 0x75, 0x70,
|
|
|
|
|
|
0x46, 0x6f, 0x72, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x18, 0x07, 0x20, 0x01, 0x28, 0x08, 0x52, 0x10,
|
|
|
|
|
|
0x69, 0x73, 0x42, 0x61, 0x63, 0x6b, 0x75, 0x70, 0x46, 0x6f, 0x72, 0x47, 0x72, 0x6f, 0x75, 0x70,
|
|
|
|
|
|
0x12, 0x1c, 0x0a, 0x09, 0x62, 0x61, 0x63, 0x6b, 0x75, 0x70, 0x49, 0x50, 0x73, 0x18, 0x08, 0x20,
|
|
|
|
|
|
0x03, 0x28, 0x09, 0x52, 0x09, 0x62, 0x61, 0x63, 0x6b, 0x75, 0x70, 0x49, 0x50, 0x73, 0x12, 0x2a,
|
|
|
|
|
|
0x0a, 0x10, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x4a, 0x53,
|
|
|
|
|
|
0x4f, 0x4e, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x10, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e,
|
|
|
|
|
|
0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x4a, 0x53, 0x4f, 0x4e, 0x22, 0x3b, 0x0a, 0x21, 0x43, 0x6f,
|
|
|
|
|
|
0x70, 0x79, 0x4e, 0x6f, 0x64, 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x54, 0x6f, 0x4e,
|
|
|
|
|
|
0x6f, 0x64, 0x65, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
|
|
|
|
|
|
0x16, 0x0a, 0x06, 0x6e, 0x6f, 0x64, 0x65, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52,
|
|
|
|
|
|
0x06, 0x6e, 0x6f, 0x64, 0x65, 0x49, 0x64, 0x22, 0x3d, 0x0a, 0x23, 0x43, 0x6f, 0x70, 0x79, 0x4e,
|
|
|
|
|
|
0x6f, 0x64, 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x54, 0x6f, 0x4e, 0x6f, 0x64, 0x65,
|
|
|
|
|
|
0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16,
|
|
|
|
|
|
0x0a, 0x06, 0x6e, 0x6f, 0x64, 0x65, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06,
|
2023-07-24 09:56:49 +08:00
|
|
|
|
0x6e, 0x6f, 0x64, 0x65, 0x49, 0x64, 0x22, 0x1a, 0x0a, 0x18, 0x46, 0x69, 0x6e, 0x64, 0x4e, 0x6f,
|
|
|
|
|
|
0x64, 0x65, 0x54, 0x4f, 0x41, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65,
|
|
|
|
|
|
0x73, 0x74, 0x22, 0x35, 0x0a, 0x19, 0x46, 0x69, 0x6e, 0x64, 0x4e, 0x6f, 0x64, 0x65, 0x54, 0x4f,
|
|
|
|
|
|
0x41, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12,
|
|
|
|
|
|
0x18, 0x0a, 0x07, 0x74, 0x6f, 0x61, 0x4a, 0x53, 0x4f, 0x4e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c,
|
|
|
|
|
|
0x52, 0x07, 0x74, 0x6f, 0x61, 0x4a, 0x53, 0x4f, 0x4e, 0x32, 0xf6, 0x2b, 0x0a, 0x0b, 0x4e, 0x6f,
|
|
|
|
|
|
0x64, 0x65, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x3b, 0x0a, 0x0a, 0x63, 0x72, 0x65,
|
|
|
|
|
|
0x61, 0x74, 0x65, 0x4e, 0x6f, 0x64, 0x65, 0x12, 0x15, 0x2e, 0x70, 0x62, 0x2e, 0x43, 0x72, 0x65,
|
|
|
|
|
|
0x61, 0x74, 0x65, 0x4e, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16,
|
|
|
|
|
|
0x2e, 0x70, 0x62, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4e, 0x6f, 0x64, 0x65, 0x52, 0x65,
|
|
|
|
|
|
0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x56, 0x0a, 0x13, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74,
|
|
|
|
|
|
0x65, 0x72, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x4e, 0x6f, 0x64, 0x65, 0x12, 0x1e, 0x2e,
|
|
|
|
|
|
0x70, 0x62, 0x2e, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x43, 0x6c, 0x75, 0x73, 0x74,
|
|
|
|
|
|
0x65, 0x72, 0x4e, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1f, 0x2e,
|
|
|
|
|
|
0x70, 0x62, 0x2e, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x43, 0x6c, 0x75, 0x73, 0x74,
|
|
|
|
|
|
0x65, 0x72, 0x4e, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x4d,
|
|
|
|
|
|
0x0a, 0x14, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65,
|
|
|
|
|
|
0x64, 0x4e, 0x6f, 0x64, 0x65, 0x73, 0x12, 0x1f, 0x2e, 0x70, 0x62, 0x2e, 0x43, 0x6f, 0x75, 0x6e,
|
|
|
|
|
|
0x74, 0x41, 0x6c, 0x6c, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x4e, 0x6f, 0x64, 0x65, 0x73,
|
|
|
|
|
|
0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x14, 0x2e, 0x70, 0x62, 0x2e, 0x52, 0x50, 0x43,
|
|
|
|
|
|
0x43, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x57, 0x0a,
|
|
|
|
|
|
0x19, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64,
|
|
|
|
|
|
0x4e, 0x6f, 0x64, 0x65, 0x73, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x12, 0x24, 0x2e, 0x70, 0x62, 0x2e,
|
|
|
|
|
|
0x43, 0x6f, 0x75, 0x6e, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x4e,
|
|
|
|
|
|
0x6f, 0x64, 0x65, 0x73, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
|
|
|
|
|
|
0x1a, 0x14, 0x2e, 0x70, 0x62, 0x2e, 0x52, 0x50, 0x43, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65,
|
|
|
|
|
|
0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x5c, 0x0a, 0x15, 0x6c, 0x69, 0x73, 0x74, 0x45, 0x6e,
|
|
|
|
|
|
0x61, 0x62, 0x6c, 0x65, 0x64, 0x4e, 0x6f, 0x64, 0x65, 0x73, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x12,
|
|
|
|
|
|
0x20, 0x2e, 0x70, 0x62, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64,
|
|
|
|
|
|
0x4e, 0x6f, 0x64, 0x65, 0x73, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
|
|
|
|
|
|
0x74, 0x1a, 0x21, 0x2e, 0x70, 0x62, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x45, 0x6e, 0x61, 0x62, 0x6c,
|
|
|
|
|
|
0x65, 0x64, 0x4e, 0x6f, 0x64, 0x65, 0x73, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x52, 0x65, 0x73, 0x70,
|
|
|
|
|
|
0x6f, 0x6e, 0x73, 0x65, 0x12, 0x89, 0x01, 0x0a, 0x24, 0x66, 0x69, 0x6e, 0x64, 0x41, 0x6c, 0x6c,
|
|
|
|
|
|
0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x4e, 0x6f, 0x64, 0x65, 0x73, 0x57, 0x69, 0x74, 0x68,
|
|
|
|
|
|
0x4e, 0x6f, 0x64, 0x65, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x49, 0x64, 0x12, 0x2f, 0x2e,
|
|
|
|
|
|
0x70, 0x62, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x41, 0x6c, 0x6c, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65,
|
|
|
|
|
|
0x64, 0x4e, 0x6f, 0x64, 0x65, 0x73, 0x57, 0x69, 0x74, 0x68, 0x4e, 0x6f, 0x64, 0x65, 0x43, 0x6c,
|
|
|
|
|
|
0x75, 0x73, 0x74, 0x65, 0x72, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x30,
|
|
|
|
|
|
0x2e, 0x70, 0x62, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x41, 0x6c, 0x6c, 0x45, 0x6e, 0x61, 0x62, 0x6c,
|
|
|
|
|
|
0x65, 0x64, 0x4e, 0x6f, 0x64, 0x65, 0x73, 0x57, 0x69, 0x74, 0x68, 0x4e, 0x6f, 0x64, 0x65, 0x43,
|
|
|
|
|
|
0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
|
|
|
|
|
|
0x12, 0x33, 0x0a, 0x0a, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x4e, 0x6f, 0x64, 0x65, 0x12, 0x15,
|
|
|
|
|
|
0x2e, 0x70, 0x62, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x4e, 0x6f, 0x64, 0x65, 0x52, 0x65,
|
2023-06-01 17:48:01 +08:00
|
|
|
|
0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x0e, 0x2e, 0x70, 0x62, 0x2e, 0x52, 0x50, 0x43, 0x53, 0x75,
|
2023-07-24 09:56:49 +08:00
|
|
|
|
0x63, 0x63, 0x65, 0x73, 0x73, 0x12, 0x51, 0x0a, 0x19, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x4e,
|
|
|
|
|
|
0x6f, 0x64, 0x65, 0x46, 0x72, 0x6f, 0x6d, 0x4e, 0x6f, 0x64, 0x65, 0x43, 0x6c, 0x75, 0x73, 0x74,
|
|
|
|
|
|
0x65, 0x72, 0x12, 0x24, 0x2e, 0x70, 0x62, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x4e, 0x6f,
|
|
|
|
|
|
0x64, 0x65, 0x46, 0x72, 0x6f, 0x6d, 0x4e, 0x6f, 0x64, 0x65, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65,
|
|
|
|
|
|
0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x0e, 0x2e, 0x70, 0x62, 0x2e, 0x52, 0x50,
|
|
|
|
|
|
0x43, 0x53, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x12, 0x33, 0x0a, 0x0a, 0x75, 0x70, 0x64, 0x61,
|
|
|
|
|
|
0x74, 0x65, 0x4e, 0x6f, 0x64, 0x65, 0x12, 0x15, 0x2e, 0x70, 0x62, 0x2e, 0x55, 0x70, 0x64, 0x61,
|
|
|
|
|
|
0x74, 0x65, 0x4e, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x0e, 0x2e,
|
|
|
|
|
|
0x70, 0x62, 0x2e, 0x52, 0x50, 0x43, 0x53, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x12, 0x4a, 0x0a,
|
|
|
|
|
|
0x0f, 0x66, 0x69, 0x6e, 0x64, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x4e, 0x6f, 0x64, 0x65,
|
|
|
|
|
|
0x12, 0x1a, 0x2e, 0x70, 0x62, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65,
|
|
|
|
|
|
0x64, 0x4e, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1b, 0x2e, 0x70,
|
|
|
|
|
|
0x62, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x4e, 0x6f, 0x64,
|
|
|
|
|
|
0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x59, 0x0a, 0x14, 0x66, 0x69, 0x6e,
|
|
|
|
|
|
0x64, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x42, 0x61, 0x73, 0x69, 0x63, 0x4e, 0x6f, 0x64,
|
|
|
|
|
|
0x65, 0x12, 0x1f, 0x2e, 0x70, 0x62, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x45, 0x6e, 0x61, 0x62, 0x6c,
|
|
|
|
|
|
0x65, 0x64, 0x42, 0x61, 0x73, 0x69, 0x63, 0x4e, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65,
|
|
|
|
|
|
0x73, 0x74, 0x1a, 0x20, 0x2e, 0x70, 0x62, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x45, 0x6e, 0x61, 0x62,
|
|
|
|
|
|
0x6c, 0x65, 0x64, 0x42, 0x61, 0x73, 0x69, 0x63, 0x4e, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x73, 0x70,
|
|
|
|
|
|
0x6f, 0x6e, 0x73, 0x65, 0x12, 0x5c, 0x0a, 0x15, 0x66, 0x69, 0x6e, 0x64, 0x43, 0x75, 0x72, 0x72,
|
|
|
|
|
|
0x65, 0x6e, 0x74, 0x4e, 0x6f, 0x64, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x20, 0x2e,
|
|
|
|
|
|
0x70, 0x62, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x4e, 0x6f,
|
|
|
|
|
|
0x64, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
|
|
|
|
|
|
0x21, 0x2e, 0x70, 0x62, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74,
|
|
|
|
|
|
0x4e, 0x6f, 0x64, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
|
|
|
|
|
|
0x73, 0x65, 0x12, 0x3e, 0x0a, 0x0a, 0x6e, 0x6f, 0x64, 0x65, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d,
|
|
|
|
|
|
0x12, 0x15, 0x2e, 0x70, 0x62, 0x2e, 0x4e, 0x6f, 0x64, 0x65, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d,
|
|
|
|
|
|
0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x1a, 0x15, 0x2e, 0x70, 0x62, 0x2e, 0x4e, 0x6f, 0x64,
|
|
|
|
|
|
0x65, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x28, 0x01,
|
|
|
|
|
|
0x30, 0x01, 0x12, 0x41, 0x0a, 0x11, 0x73, 0x65, 0x6e, 0x64, 0x43, 0x6f, 0x6d, 0x6d, 0x61, 0x6e,
|
|
|
|
|
|
0x64, 0x54, 0x6f, 0x4e, 0x6f, 0x64, 0x65, 0x12, 0x15, 0x2e, 0x70, 0x62, 0x2e, 0x4e, 0x6f, 0x64,
|
|
|
|
|
|
0x65, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x1a, 0x15,
|
|
|
|
|
|
0x2e, 0x70, 0x62, 0x2e, 0x4e, 0x6f, 0x64, 0x65, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x4d, 0x65,
|
|
|
|
|
|
0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x3f, 0x0a, 0x10, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4e,
|
|
|
|
|
|
0x6f, 0x64, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x1b, 0x2e, 0x70, 0x62, 0x2e, 0x55,
|
|
|
|
|
|
0x70, 0x64, 0x61, 0x74, 0x65, 0x4e, 0x6f, 0x64, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52,
|
2023-06-01 17:48:01 +08:00
|
|
|
|
0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x0e, 0x2e, 0x70, 0x62, 0x2e, 0x52, 0x50, 0x43, 0x53,
|
2023-07-24 09:56:49 +08:00
|
|
|
|
0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x12, 0x49, 0x0a, 0x15, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65,
|
|
|
|
|
|
0x4e, 0x6f, 0x64, 0x65, 0x49, 0x73, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x65, 0x64, 0x12,
|
|
|
|
|
|
0x20, 0x2e, 0x70, 0x62, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4e, 0x6f, 0x64, 0x65, 0x49,
|
|
|
|
|
|
0x73, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x65, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
|
|
|
|
|
|
0x74, 0x1a, 0x0e, 0x2e, 0x70, 0x62, 0x2e, 0x52, 0x50, 0x43, 0x53, 0x75, 0x63, 0x63, 0x65, 0x73,
|
|
|
|
|
|
0x73, 0x12, 0x3e, 0x0a, 0x0b, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x4e, 0x6f, 0x64, 0x65,
|
|
|
|
|
|
0x12, 0x16, 0x2e, 0x70, 0x62, 0x2e, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x4e, 0x6f, 0x64,
|
|
|
|
|
|
0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x17, 0x2e, 0x70, 0x62, 0x2e, 0x49, 0x6e,
|
|
|
|
|
|
0x73, 0x74, 0x61, 0x6c, 0x6c, 0x4e, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
|
|
|
|
|
|
0x65, 0x12, 0x3e, 0x0a, 0x0b, 0x75, 0x70, 0x67, 0x72, 0x61, 0x64, 0x65, 0x4e, 0x6f, 0x64, 0x65,
|
|
|
|
|
|
0x12, 0x16, 0x2e, 0x70, 0x62, 0x2e, 0x55, 0x70, 0x67, 0x72, 0x61, 0x64, 0x65, 0x4e, 0x6f, 0x64,
|
|
|
|
|
|
0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x17, 0x2e, 0x70, 0x62, 0x2e, 0x55, 0x70,
|
|
|
|
|
|
0x67, 0x72, 0x61, 0x64, 0x65, 0x4e, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
|
|
|
|
|
|
0x65, 0x12, 0x38, 0x0a, 0x09, 0x73, 0x74, 0x61, 0x72, 0x74, 0x4e, 0x6f, 0x64, 0x65, 0x12, 0x14,
|
|
|
|
|
|
0x2e, 0x70, 0x62, 0x2e, 0x53, 0x74, 0x61, 0x72, 0x74, 0x4e, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x71,
|
|
|
|
|
|
0x75, 0x65, 0x73, 0x74, 0x1a, 0x15, 0x2e, 0x70, 0x62, 0x2e, 0x53, 0x74, 0x61, 0x72, 0x74, 0x4e,
|
|
|
|
|
|
0x6f, 0x64, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x35, 0x0a, 0x08, 0x73,
|
|
|
|
|
|
0x74, 0x6f, 0x70, 0x4e, 0x6f, 0x64, 0x65, 0x12, 0x13, 0x2e, 0x70, 0x62, 0x2e, 0x53, 0x74, 0x6f,
|
|
|
|
|
|
0x70, 0x4e, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x14, 0x2e, 0x70,
|
|
|
|
|
|
0x62, 0x2e, 0x53, 0x74, 0x6f, 0x70, 0x4e, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
|
|
|
|
|
|
0x73, 0x65, 0x12, 0x55, 0x0a, 0x1b, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4e, 0x6f, 0x64, 0x65,
|
|
|
|
|
|
0x43, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x65, 0x64, 0x41, 0x50, 0x49, 0x4e, 0x6f, 0x64, 0x65,
|
|
|
|
|
|
0x73, 0x12, 0x26, 0x2e, 0x70, 0x62, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4e, 0x6f, 0x64,
|
|
|
|
|
|
0x65, 0x43, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x65, 0x64, 0x41, 0x50, 0x49, 0x4e, 0x6f, 0x64,
|
|
|
|
|
|
0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x0e, 0x2e, 0x70, 0x62, 0x2e, 0x52,
|
2023-06-01 17:48:01 +08:00
|
|
|
|
0x50, 0x43, 0x53, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x12, 0x6b, 0x0a, 0x23, 0x63, 0x6f, 0x75,
|
|
|
|
|
|
0x6e, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x4e, 0x6f, 0x64, 0x65,
|
2023-07-24 09:56:49 +08:00
|
|
|
|
0x73, 0x57, 0x69, 0x74, 0x68, 0x4e, 0x6f, 0x64, 0x65, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x49, 0x64,
|
2023-06-01 17:48:01 +08:00
|
|
|
|
0x12, 0x2e, 0x2e, 0x70, 0x62, 0x2e, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x6e,
|
|
|
|
|
|
0x61, 0x62, 0x6c, 0x65, 0x64, 0x4e, 0x6f, 0x64, 0x65, 0x73, 0x57, 0x69, 0x74, 0x68, 0x4e, 0x6f,
|
2023-07-24 09:56:49 +08:00
|
|
|
|
0x64, 0x65, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
|
2023-06-01 17:48:01 +08:00
|
|
|
|
0x1a, 0x14, 0x2e, 0x70, 0x62, 0x2e, 0x52, 0x50, 0x43, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65,
|
2023-07-24 09:56:49 +08:00
|
|
|
|
0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x83, 0x01, 0x0a, 0x22, 0x66, 0x69, 0x6e, 0x64, 0x41,
|
|
|
|
|
|
0x6c, 0x6c, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x4e, 0x6f, 0x64, 0x65, 0x73, 0x57, 0x69,
|
|
|
|
|
|
0x74, 0x68, 0x4e, 0x6f, 0x64, 0x65, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x2d, 0x2e,
|
|
|
|
|
|
0x70, 0x62, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x41, 0x6c, 0x6c, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65,
|
|
|
|
|
|
0x64, 0x4e, 0x6f, 0x64, 0x65, 0x73, 0x57, 0x69, 0x74, 0x68, 0x4e, 0x6f, 0x64, 0x65, 0x47, 0x72,
|
|
|
|
|
|
0x61, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2e, 0x2e, 0x70,
|
|
|
|
|
|
0x62, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x41, 0x6c, 0x6c, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64,
|
|
|
|
|
|
0x4e, 0x6f, 0x64, 0x65, 0x73, 0x57, 0x69, 0x74, 0x68, 0x4e, 0x6f, 0x64, 0x65, 0x47, 0x72, 0x61,
|
|
|
|
|
|
0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x79, 0x0a, 0x2a,
|
|
|
|
|
|
0x63, 0x6f, 0x75, 0x6e, 0x74, 0x41, 0x6c, 0x6c, 0x4e, 0x6f, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61,
|
|
|
|
|
|
0x6c, 0x6c, 0x65, 0x64, 0x4e, 0x6f, 0x64, 0x65, 0x73, 0x57, 0x69, 0x74, 0x68, 0x4e, 0x6f, 0x64,
|
|
|
|
|
|
0x65, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x49, 0x64, 0x12, 0x35, 0x2e, 0x70, 0x62, 0x2e,
|
|
|
|
|
|
0x43, 0x6f, 0x75, 0x6e, 0x74, 0x41, 0x6c, 0x6c, 0x4e, 0x6f, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61,
|
|
|
|
|
|
0x6c, 0x6c, 0x65, 0x64, 0x4e, 0x6f, 0x64, 0x65, 0x73, 0x57, 0x69, 0x74, 0x68, 0x4e, 0x6f, 0x64,
|
|
|
|
|
|
0x65, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
|
|
|
|
|
|
0x74, 0x1a, 0x14, 0x2e, 0x70, 0x62, 0x2e, 0x52, 0x50, 0x43, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x52,
|
|
|
|
|
|
0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x98, 0x01, 0x0a, 0x29, 0x66, 0x69, 0x6e, 0x64,
|
|
|
|
|
|
0x41, 0x6c, 0x6c, 0x4e, 0x6f, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x65, 0x64, 0x4e,
|
|
|
|
|
|
0x6f, 0x64, 0x65, 0x73, 0x57, 0x69, 0x74, 0x68, 0x4e, 0x6f, 0x64, 0x65, 0x43, 0x6c, 0x75, 0x73,
|
|
|
|
|
|
0x74, 0x65, 0x72, 0x49, 0x64, 0x12, 0x34, 0x2e, 0x70, 0x62, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x41,
|
|
|
|
|
|
0x6c, 0x6c, 0x4e, 0x6f, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x65, 0x64, 0x4e, 0x6f,
|
|
|
|
|
|
0x64, 0x65, 0x73, 0x57, 0x69, 0x74, 0x68, 0x4e, 0x6f, 0x64, 0x65, 0x43, 0x6c, 0x75, 0x73, 0x74,
|
|
|
|
|
|
0x65, 0x72, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x35, 0x2e, 0x70, 0x62,
|
|
|
|
|
|
0x2e, 0x46, 0x69, 0x6e, 0x64, 0x41, 0x6c, 0x6c, 0x4e, 0x6f, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61,
|
|
|
|
|
|
0x6c, 0x6c, 0x65, 0x64, 0x4e, 0x6f, 0x64, 0x65, 0x73, 0x57, 0x69, 0x74, 0x68, 0x4e, 0x6f, 0x64,
|
|
|
|
|
|
0x65, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
|
|
|
|
|
|
0x73, 0x65, 0x12, 0x6f, 0x0a, 0x25, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x41, 0x6c, 0x6c, 0x55, 0x70,
|
|
|
|
|
|
0x67, 0x72, 0x61, 0x64, 0x65, 0x4e, 0x6f, 0x64, 0x65, 0x73, 0x57, 0x69, 0x74, 0x68, 0x4e, 0x6f,
|
|
|
|
|
|
0x64, 0x65, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x49, 0x64, 0x12, 0x30, 0x2e, 0x70, 0x62,
|
|
|
|
|
|
0x2e, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x41, 0x6c, 0x6c, 0x55, 0x70, 0x67, 0x72, 0x61, 0x64, 0x65,
|
|
|
|
|
|
0x4e, 0x6f, 0x64, 0x65, 0x73, 0x57, 0x69, 0x74, 0x68, 0x4e, 0x6f, 0x64, 0x65, 0x43, 0x6c, 0x75,
|
|
|
|
|
|
0x73, 0x74, 0x65, 0x72, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x14, 0x2e,
|
|
|
|
|
|
0x70, 0x62, 0x2e, 0x52, 0x50, 0x43, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f,
|
|
|
|
|
|
0x6e, 0x73, 0x65, 0x12, 0x89, 0x01, 0x0a, 0x24, 0x66, 0x69, 0x6e, 0x64, 0x41, 0x6c, 0x6c, 0x55,
|
|
|
|
|
|
0x70, 0x67, 0x72, 0x61, 0x64, 0x65, 0x4e, 0x6f, 0x64, 0x65, 0x73, 0x57, 0x69, 0x74, 0x68, 0x4e,
|
|
|
|
|
|
0x6f, 0x64, 0x65, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x49, 0x64, 0x12, 0x2f, 0x2e, 0x70,
|
|
|
|
|
|
0x62, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x41, 0x6c, 0x6c, 0x55, 0x70, 0x67, 0x72, 0x61, 0x64, 0x65,
|
|
|
|
|
|
0x4e, 0x6f, 0x64, 0x65, 0x73, 0x57, 0x69, 0x74, 0x68, 0x4e, 0x6f, 0x64, 0x65, 0x43, 0x6c, 0x75,
|
|
|
|
|
|
0x73, 0x74, 0x65, 0x72, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x30, 0x2e,
|
|
|
|
|
|
0x70, 0x62, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x41, 0x6c, 0x6c, 0x55, 0x70, 0x67, 0x72, 0x61, 0x64,
|
|
|
|
|
|
0x65, 0x4e, 0x6f, 0x64, 0x65, 0x73, 0x57, 0x69, 0x74, 0x68, 0x4e, 0x6f, 0x64, 0x65, 0x43, 0x6c,
|
|
|
|
|
|
0x75, 0x73, 0x74, 0x65, 0x72, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12,
|
|
|
|
|
|
0x5c, 0x0a, 0x15, 0x66, 0x69, 0x6e, 0x64, 0x4e, 0x6f, 0x64, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61,
|
|
|
|
|
|
0x6c, 0x6c, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x20, 0x2e, 0x70, 0x62, 0x2e, 0x46, 0x69,
|
|
|
|
|
|
0x6e, 0x64, 0x4e, 0x6f, 0x64, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x53, 0x74, 0x61,
|
|
|
|
|
|
0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x21, 0x2e, 0x70, 0x62, 0x2e,
|
|
|
|
|
|
0x46, 0x69, 0x6e, 0x64, 0x4e, 0x6f, 0x64, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x53,
|
|
|
|
|
|
0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x3d, 0x0a,
|
|
|
|
|
|
0x0f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4e, 0x6f, 0x64, 0x65, 0x4c, 0x6f, 0x67, 0x69, 0x6e,
|
|
|
|
|
|
0x12, 0x1a, 0x2e, 0x70, 0x62, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4e, 0x6f, 0x64, 0x65,
|
|
|
|
|
|
0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x0e, 0x2e, 0x70,
|
|
|
|
|
|
0x62, 0x2e, 0x52, 0x50, 0x43, 0x53, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x12, 0x6b, 0x0a, 0x23,
|
|
|
|
|
|
0x63, 0x6f, 0x75, 0x6e, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x4e,
|
|
|
|
|
|
0x6f, 0x64, 0x65, 0x73, 0x57, 0x69, 0x74, 0x68, 0x4e, 0x6f, 0x64, 0x65, 0x47, 0x72, 0x6f, 0x75,
|
|
|
|
|
|
0x70, 0x49, 0x64, 0x12, 0x2e, 0x2e, 0x70, 0x62, 0x2e, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x41, 0x6c,
|
|
|
|
|
|
0x6c, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x4e, 0x6f, 0x64, 0x65, 0x73, 0x57, 0x69, 0x74,
|
|
|
|
|
|
0x68, 0x4e, 0x6f, 0x64, 0x65, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75,
|
|
|
|
|
|
0x65, 0x73, 0x74, 0x1a, 0x14, 0x2e, 0x70, 0x62, 0x2e, 0x52, 0x50, 0x43, 0x43, 0x6f, 0x75, 0x6e,
|
|
|
|
|
|
0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x92, 0x01, 0x0a, 0x27, 0x66, 0x69,
|
|
|
|
|
|
0x6e, 0x64, 0x41, 0x6c, 0x6c, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x4e, 0x6f, 0x64, 0x65,
|
|
|
|
|
|
0x73, 0x44, 0x4e, 0x53, 0x57, 0x69, 0x74, 0x68, 0x4e, 0x6f, 0x64, 0x65, 0x43, 0x6c, 0x75, 0x73,
|
|
|
|
|
|
0x74, 0x65, 0x72, 0x49, 0x64, 0x12, 0x32, 0x2e, 0x70, 0x62, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x41,
|
2023-06-01 17:48:01 +08:00
|
|
|
|
0x6c, 0x6c, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x4e, 0x6f, 0x64, 0x65, 0x73, 0x44, 0x4e,
|
|
|
|
|
|
0x53, 0x57, 0x69, 0x74, 0x68, 0x4e, 0x6f, 0x64, 0x65, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72,
|
2023-07-24 09:56:49 +08:00
|
|
|
|
0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x33, 0x2e, 0x70, 0x62, 0x2e, 0x46,
|
|
|
|
|
|
0x69, 0x6e, 0x64, 0x41, 0x6c, 0x6c, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x4e, 0x6f, 0x64,
|
|
|
|
|
|
0x65, 0x73, 0x44, 0x4e, 0x53, 0x57, 0x69, 0x74, 0x68, 0x4e, 0x6f, 0x64, 0x65, 0x43, 0x6c, 0x75,
|
|
|
|
|
|
0x73, 0x74, 0x65, 0x72, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x53,
|
|
|
|
|
|
0x0a, 0x12, 0x66, 0x69, 0x6e, 0x64, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x4e, 0x6f, 0x64,
|
|
|
|
|
|
0x65, 0x44, 0x4e, 0x53, 0x12, 0x1d, 0x2e, 0x70, 0x62, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x45, 0x6e,
|
|
|
|
|
|
0x61, 0x62, 0x6c, 0x65, 0x64, 0x4e, 0x6f, 0x64, 0x65, 0x44, 0x4e, 0x53, 0x52, 0x65, 0x71, 0x75,
|
|
|
|
|
|
0x65, 0x73, 0x74, 0x1a, 0x1e, 0x2e, 0x70, 0x62, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x45, 0x6e, 0x61,
|
|
|
|
|
|
0x62, 0x6c, 0x65, 0x64, 0x4e, 0x6f, 0x64, 0x65, 0x44, 0x4e, 0x53, 0x52, 0x65, 0x73, 0x70, 0x6f,
|
|
|
|
|
|
0x6e, 0x73, 0x65, 0x12, 0x39, 0x0a, 0x0d, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4e, 0x6f, 0x64,
|
|
|
|
|
|
0x65, 0x44, 0x4e, 0x53, 0x12, 0x18, 0x2e, 0x70, 0x62, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65,
|
|
|
|
|
|
0x4e, 0x6f, 0x64, 0x65, 0x44, 0x4e, 0x53, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x0e,
|
|
|
|
|
|
0x2e, 0x70, 0x62, 0x2e, 0x52, 0x50, 0x43, 0x53, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x12, 0x6d,
|
|
|
|
|
|
0x0a, 0x24, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65,
|
|
|
|
|
|
0x64, 0x4e, 0x6f, 0x64, 0x65, 0x73, 0x57, 0x69, 0x74, 0x68, 0x4e, 0x6f, 0x64, 0x65, 0x52, 0x65,
|
|
|
|
|
|
0x67, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x2f, 0x2e, 0x70, 0x62, 0x2e, 0x43, 0x6f, 0x75, 0x6e,
|
|
|
|
|
|
0x74, 0x41, 0x6c, 0x6c, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x4e, 0x6f, 0x64, 0x65, 0x73,
|
|
|
|
|
|
0x57, 0x69, 0x74, 0x68, 0x4e, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x49, 0x64,
|
|
|
|
|
|
0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x14, 0x2e, 0x70, 0x62, 0x2e, 0x52, 0x50, 0x43,
|
|
|
|
|
|
0x43, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x62, 0x0a,
|
|
|
|
|
|
0x17, 0x66, 0x69, 0x6e, 0x64, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x4e, 0x6f, 0x64, 0x65,
|
|
|
|
|
|
0x73, 0x57, 0x69, 0x74, 0x68, 0x49, 0x64, 0x73, 0x12, 0x22, 0x2e, 0x70, 0x62, 0x2e, 0x46, 0x69,
|
2023-06-01 17:48:01 +08:00
|
|
|
|
0x6e, 0x64, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x4e, 0x6f, 0x64, 0x65, 0x73, 0x57, 0x69,
|
2023-07-24 09:56:49 +08:00
|
|
|
|
0x74, 0x68, 0x49, 0x64, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x23, 0x2e, 0x70,
|
2023-06-01 17:48:01 +08:00
|
|
|
|
0x62, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x4e, 0x6f, 0x64,
|
2023-07-24 09:56:49 +08:00
|
|
|
|
0x65, 0x73, 0x57, 0x69, 0x74, 0x68, 0x49, 0x64, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
|
|
|
|
|
|
0x65, 0x12, 0x5f, 0x0a, 0x16, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x4e, 0x6f, 0x64, 0x65, 0x4c, 0x61,
|
|
|
|
|
|
0x74, 0x65, 0x73, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x21, 0x2e, 0x70, 0x62,
|
|
|
|
|
|
0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x4e, 0x6f, 0x64, 0x65, 0x4c, 0x61, 0x74, 0x65, 0x73, 0x74,
|
|
|
|
|
|
0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x22,
|
|
|
|
|
|
0x2e, 0x70, 0x62, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x4e, 0x6f, 0x64, 0x65, 0x4c, 0x61, 0x74,
|
|
|
|
|
|
0x65, 0x73, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
|
|
|
|
|
|
0x73, 0x65, 0x12, 0x37, 0x0a, 0x0c, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4e, 0x6f, 0x64, 0x65,
|
|
|
|
|
|
0x55, 0x70, 0x12, 0x17, 0x2e, 0x70, 0x62, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4e, 0x6f,
|
|
|
|
|
|
0x64, 0x65, 0x55, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x0e, 0x2e, 0x70, 0x62,
|
|
|
|
|
|
0x2e, 0x52, 0x50, 0x43, 0x53, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x12, 0x71, 0x0a, 0x1c, 0x64,
|
|
|
|
|
|
0x6f, 0x77, 0x6e, 0x6c, 0x6f, 0x61, 0x64, 0x4e, 0x6f, 0x64, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61,
|
|
|
|
|
|
0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x46, 0x69, 0x6c, 0x65, 0x12, 0x27, 0x2e, 0x70, 0x62,
|
|
|
|
|
|
0x2e, 0x44, 0x6f, 0x77, 0x6e, 0x6c, 0x6f, 0x61, 0x64, 0x4e, 0x6f, 0x64, 0x65, 0x49, 0x6e, 0x73,
|
|
|
|
|
|
0x74, 0x61, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x46, 0x69, 0x6c, 0x65, 0x52, 0x65, 0x71,
|
|
|
|
|
|
0x75, 0x65, 0x73, 0x74, 0x1a, 0x28, 0x2e, 0x70, 0x62, 0x2e, 0x44, 0x6f, 0x77, 0x6e, 0x6c, 0x6f,
|
|
|
|
|
|
0x61, 0x64, 0x4e, 0x6f, 0x64, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x61, 0x74, 0x69,
|
|
|
|
|
|
0x6f, 0x6e, 0x46, 0x69, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x3f,
|
|
|
|
|
|
0x0a, 0x10, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4e, 0x6f, 0x64, 0x65, 0x53, 0x79, 0x73, 0x74,
|
|
|
|
|
|
0x65, 0x6d, 0x12, 0x1b, 0x2e, 0x70, 0x62, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4e, 0x6f,
|
|
|
|
|
|
0x64, 0x65, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
|
|
|
|
|
|
0x0e, 0x2e, 0x70, 0x62, 0x2e, 0x52, 0x50, 0x43, 0x53, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x12,
|
|
|
|
|
|
0x3d, 0x0a, 0x0f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4e, 0x6f, 0x64, 0x65, 0x43, 0x61, 0x63,
|
|
|
|
|
|
0x68, 0x65, 0x12, 0x1a, 0x2e, 0x70, 0x62, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4e, 0x6f,
|
|
|
|
|
|
0x64, 0x65, 0x43, 0x61, 0x63, 0x68, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x0e,
|
|
|
|
|
|
0x2e, 0x70, 0x62, 0x2e, 0x52, 0x50, 0x43, 0x53, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x12, 0x50,
|
|
|
|
|
|
0x0a, 0x11, 0x66, 0x69, 0x6e, 0x64, 0x4e, 0x6f, 0x64, 0x65, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x49,
|
|
|
|
|
|
0x6e, 0x66, 0x6f, 0x12, 0x1c, 0x2e, 0x70, 0x62, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x4e, 0x6f, 0x64,
|
|
|
|
|
|
0x65, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
|
|
|
|
|
|
0x74, 0x1a, 0x1d, 0x2e, 0x70, 0x62, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x4e, 0x6f, 0x64, 0x65, 0x4c,
|
|
|
|
|
|
0x65, 0x76, 0x65, 0x6c, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
|
|
|
|
|
|
0x12, 0x56, 0x0a, 0x13, 0x66, 0x69, 0x6e, 0x64, 0x4e, 0x6f, 0x64, 0x65, 0x44, 0x4e, 0x53, 0x52,
|
|
|
|
|
|
0x65, 0x73, 0x6f, 0x6c, 0x76, 0x65, 0x72, 0x12, 0x1e, 0x2e, 0x70, 0x62, 0x2e, 0x46, 0x69, 0x6e,
|
|
|
|
|
|
0x64, 0x4e, 0x6f, 0x64, 0x65, 0x44, 0x4e, 0x53, 0x52, 0x65, 0x73, 0x6f, 0x6c, 0x76, 0x65, 0x72,
|
|
|
|
|
|
0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1f, 0x2e, 0x70, 0x62, 0x2e, 0x46, 0x69, 0x6e,
|
|
|
|
|
|
0x64, 0x4e, 0x6f, 0x64, 0x65, 0x44, 0x4e, 0x53, 0x52, 0x65, 0x73, 0x6f, 0x6c, 0x76, 0x65, 0x72,
|
|
|
|
|
|
0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x49, 0x0a, 0x15, 0x75, 0x70, 0x64, 0x61,
|
|
|
|
|
|
0x74, 0x65, 0x4e, 0x6f, 0x64, 0x65, 0x44, 0x4e, 0x53, 0x52, 0x65, 0x73, 0x6f, 0x6c, 0x76, 0x65,
|
|
|
|
|
|
0x72, 0x12, 0x20, 0x2e, 0x70, 0x62, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4e, 0x6f, 0x64,
|
|
|
|
|
|
0x65, 0x44, 0x4e, 0x53, 0x52, 0x65, 0x73, 0x6f, 0x6c, 0x76, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75,
|
2023-06-01 17:48:01 +08:00
|
|
|
|
0x65, 0x73, 0x74, 0x1a, 0x0e, 0x2e, 0x70, 0x62, 0x2e, 0x52, 0x50, 0x43, 0x53, 0x75, 0x63, 0x63,
|
2023-07-24 09:56:49 +08:00
|
|
|
|
0x65, 0x73, 0x73, 0x12, 0x5f, 0x0a, 0x16, 0x66, 0x69, 0x6e, 0x64, 0x4e, 0x6f, 0x64, 0x65, 0x44,
|
|
|
|
|
|
0x44, 0x6f, 0x53, 0x50, 0x72, 0x6f, 0x74, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x21, 0x2e,
|
|
|
|
|
|
0x70, 0x62, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x4e, 0x6f, 0x64, 0x65, 0x44, 0x44, 0x6f, 0x53, 0x50,
|
|
|
|
|
|
0x72, 0x6f, 0x74, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
|
|
|
|
|
|
0x1a, 0x22, 0x2e, 0x70, 0x62, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x4e, 0x6f, 0x64, 0x65, 0x44, 0x44,
|
|
|
|
|
|
0x6f, 0x53, 0x50, 0x72, 0x6f, 0x74, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70,
|
|
|
|
|
|
0x6f, 0x6e, 0x73, 0x65, 0x12, 0x4f, 0x0a, 0x18, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4e, 0x6f,
|
|
|
|
|
|
0x64, 0x65, 0x44, 0x44, 0x6f, 0x53, 0x50, 0x72, 0x6f, 0x74, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e,
|
|
|
|
|
|
0x12, 0x23, 0x2e, 0x70, 0x62, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4e, 0x6f, 0x64, 0x65,
|
|
|
|
|
|
0x44, 0x44, 0x6f, 0x53, 0x50, 0x72, 0x6f, 0x74, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65,
|
|
|
|
|
|
0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x0e, 0x2e, 0x70, 0x62, 0x2e, 0x52, 0x50, 0x43, 0x53, 0x75,
|
|
|
|
|
|
0x63, 0x63, 0x65, 0x73, 0x73, 0x12, 0x6b, 0x0a, 0x1a, 0x66, 0x69, 0x6e, 0x64, 0x4e, 0x6f, 0x64,
|
|
|
|
|
|
0x65, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x43, 0x6f, 0x6e,
|
|
|
|
|
|
0x66, 0x69, 0x67, 0x12, 0x25, 0x2e, 0x70, 0x62, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x4e, 0x6f, 0x64,
|
|
|
|
|
|
0x65, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x43, 0x6f, 0x6e,
|
|
|
|
|
|
0x66, 0x69, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x26, 0x2e, 0x70, 0x62, 0x2e,
|
|
|
|
|
|
0x46, 0x69, 0x6e, 0x64, 0x4e, 0x6f, 0x64, 0x65, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x53, 0x65,
|
|
|
|
|
|
0x72, 0x76, 0x65, 0x72, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
|
|
|
|
|
|
0x73, 0x65, 0x12, 0x68, 0x0a, 0x19, 0x66, 0x69, 0x6e, 0x64, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65,
|
|
|
|
|
|
0x64, 0x4e, 0x6f, 0x64, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x49, 0x6e, 0x66, 0x6f, 0x12,
|
|
|
|
|
|
0x24, 0x2e, 0x70, 0x62, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64,
|
|
|
|
|
|
0x4e, 0x6f, 0x64, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65,
|
|
|
|
|
|
0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x25, 0x2e, 0x70, 0x62, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x45,
|
|
|
|
|
|
0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x4e, 0x6f, 0x64, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67,
|
|
|
|
|
|
0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x51, 0x0a, 0x16,
|
|
|
|
|
|
0x63, 0x6f, 0x75, 0x6e, 0x74, 0x41, 0x6c, 0x6c, 0x4e, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x67, 0x69,
|
|
|
|
|
|
0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x21, 0x2e, 0x70, 0x62, 0x2e, 0x43, 0x6f, 0x75, 0x6e,
|
|
|
|
|
|
0x74, 0x41, 0x6c, 0x6c, 0x4e, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x49, 0x6e,
|
|
|
|
|
|
0x66, 0x6f, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x14, 0x2e, 0x70, 0x62, 0x2e, 0x52,
|
|
|
|
|
|
0x50, 0x43, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12,
|
|
|
|
|
|
0x53, 0x0a, 0x12, 0x6c, 0x69, 0x73, 0x74, 0x4e, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x67, 0x69, 0x6f,
|
|
|
|
|
|
0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x1d, 0x2e, 0x70, 0x62, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x4e,
|
|
|
|
|
|
0x6f, 0x64, 0x65, 0x52, 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71,
|
|
|
|
|
|
0x75, 0x65, 0x73, 0x74, 0x1a, 0x1e, 0x2e, 0x70, 0x62, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x4e, 0x6f,
|
|
|
|
|
|
0x64, 0x65, 0x52, 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70,
|
|
|
|
|
|
0x6f, 0x6e, 0x73, 0x65, 0x12, 0x47, 0x0a, 0x14, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4e, 0x6f,
|
|
|
|
|
|
0x64, 0x65, 0x52, 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x1f, 0x2e, 0x70,
|
|
|
|
|
|
0x62, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4e, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x67, 0x69,
|
|
|
|
|
|
0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x0e, 0x2e,
|
|
|
|
|
|
0x70, 0x62, 0x2e, 0x52, 0x50, 0x43, 0x53, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x12, 0x50, 0x0a,
|
|
|
|
|
|
0x11, 0x66, 0x69, 0x6e, 0x64, 0x4e, 0x6f, 0x64, 0x65, 0x41, 0x50, 0x49, 0x43, 0x6f, 0x6e, 0x66,
|
|
|
|
|
|
0x69, 0x67, 0x12, 0x1c, 0x2e, 0x70, 0x62, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x4e, 0x6f, 0x64, 0x65,
|
|
|
|
|
|
0x41, 0x50, 0x49, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
|
|
|
|
|
|
0x1a, 0x1d, 0x2e, 0x70, 0x62, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x4e, 0x6f, 0x64, 0x65, 0x41, 0x50,
|
|
|
|
|
|
0x49, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12,
|
|
|
|
|
|
0x45, 0x0a, 0x13, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4e, 0x6f, 0x64, 0x65, 0x41, 0x50, 0x49,
|
|
|
|
|
|
0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x1e, 0x2e, 0x70, 0x62, 0x2e, 0x55, 0x70, 0x64, 0x61,
|
|
|
|
|
|
0x74, 0x65, 0x4e, 0x6f, 0x64, 0x65, 0x41, 0x50, 0x49, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52,
|
|
|
|
|
|
0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x0e, 0x2e, 0x70, 0x62, 0x2e, 0x52, 0x50, 0x43, 0x53,
|
|
|
|
|
|
0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x12, 0x56, 0x0a, 0x13, 0x66, 0x69, 0x6e, 0x64, 0x4e, 0x6f,
|
|
|
|
|
|
0x64, 0x65, 0x55, 0x41, 0x4d, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x69, 0x65, 0x73, 0x12, 0x1e, 0x2e,
|
|
|
|
|
|
0x70, 0x62, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x4e, 0x6f, 0x64, 0x65, 0x55, 0x41, 0x4d, 0x50, 0x6f,
|
|
|
|
|
|
0x6c, 0x69, 0x63, 0x69, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1f, 0x2e,
|
|
|
|
|
|
0x70, 0x62, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x4e, 0x6f, 0x64, 0x65, 0x55, 0x41, 0x4d, 0x50, 0x6f,
|
|
|
|
|
|
0x6c, 0x69, 0x63, 0x69, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x5f,
|
|
|
|
|
|
0x0a, 0x16, 0x66, 0x69, 0x6e, 0x64, 0x4e, 0x6f, 0x64, 0x65, 0x48, 0x54, 0x54, 0x50, 0x43, 0x43,
|
|
|
|
|
|
0x50, 0x6f, 0x6c, 0x69, 0x63, 0x69, 0x65, 0x73, 0x12, 0x21, 0x2e, 0x70, 0x62, 0x2e, 0x46, 0x69,
|
2023-06-01 17:48:01 +08:00
|
|
|
|
0x6e, 0x64, 0x4e, 0x6f, 0x64, 0x65, 0x48, 0x54, 0x54, 0x50, 0x43, 0x43, 0x50, 0x6f, 0x6c, 0x69,
|
2023-07-24 09:56:49 +08:00
|
|
|
|
0x63, 0x69, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x22, 0x2e, 0x70, 0x62,
|
|
|
|
|
|
0x2e, 0x46, 0x69, 0x6e, 0x64, 0x4e, 0x6f, 0x64, 0x65, 0x48, 0x54, 0x54, 0x50, 0x43, 0x43, 0x50,
|
|
|
|
|
|
0x6f, 0x6c, 0x69, 0x63, 0x69, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12,
|
|
|
|
|
|
0x5c, 0x0a, 0x15, 0x66, 0x69, 0x6e, 0x64, 0x4e, 0x6f, 0x64, 0x65, 0x48, 0x54, 0x54, 0x50, 0x33,
|
|
|
|
|
|
0x50, 0x6f, 0x6c, 0x69, 0x63, 0x69, 0x65, 0x73, 0x12, 0x20, 0x2e, 0x70, 0x62, 0x2e, 0x46, 0x69,
|
|
|
|
|
|
0x6e, 0x64, 0x4e, 0x6f, 0x64, 0x65, 0x48, 0x54, 0x54, 0x50, 0x33, 0x50, 0x6f, 0x6c, 0x69, 0x63,
|
|
|
|
|
|
0x69, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x21, 0x2e, 0x70, 0x62, 0x2e,
|
|
|
|
|
|
0x46, 0x69, 0x6e, 0x64, 0x4e, 0x6f, 0x64, 0x65, 0x48, 0x54, 0x54, 0x50, 0x33, 0x50, 0x6f, 0x6c,
|
|
|
|
|
|
0x69, 0x63, 0x69, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x68, 0x0a,
|
|
|
|
|
|
0x19, 0x66, 0x69, 0x6e, 0x64, 0x4e, 0x6f, 0x64, 0x65, 0x48, 0x54, 0x54, 0x50, 0x50, 0x61, 0x67,
|
|
|
|
|
|
0x65, 0x73, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x69, 0x65, 0x73, 0x12, 0x24, 0x2e, 0x70, 0x62, 0x2e,
|
|
|
|
|
|
0x46, 0x69, 0x6e, 0x64, 0x4e, 0x6f, 0x64, 0x65, 0x48, 0x54, 0x54, 0x50, 0x50, 0x61, 0x67, 0x65,
|
|
|
|
|
|
0x73, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x69, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
|
|
|
|
|
|
0x1a, 0x25, 0x2e, 0x70, 0x62, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x4e, 0x6f, 0x64, 0x65, 0x48, 0x54,
|
|
|
|
|
|
0x54, 0x50, 0x50, 0x61, 0x67, 0x65, 0x73, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x69, 0x65, 0x73, 0x52,
|
|
|
|
|
|
0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x59, 0x0a, 0x14, 0x66, 0x69, 0x6e, 0x64, 0x4e,
|
|
|
|
|
|
0x6f, 0x64, 0x65, 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12,
|
|
|
|
|
|
0x1f, 0x2e, 0x70, 0x62, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x4e, 0x6f, 0x64, 0x65, 0x53, 0x63, 0x68,
|
|
|
|
|
|
0x65, 0x64, 0x75, 0x6c, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
|
|
|
|
|
|
0x1a, 0x20, 0x2e, 0x70, 0x62, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x4e, 0x6f, 0x64, 0x65, 0x53, 0x63,
|
|
|
|
|
|
0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
|
|
|
|
|
|
0x73, 0x65, 0x12, 0x4b, 0x0a, 0x16, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4e, 0x6f, 0x64, 0x65,
|
|
|
|
|
|
0x53, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x21, 0x2e, 0x70,
|
|
|
|
|
|
0x62, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4e, 0x6f, 0x64, 0x65, 0x53, 0x63, 0x68, 0x65,
|
|
|
|
|
|
0x64, 0x75, 0x6c, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
|
|
|
|
|
|
0x0e, 0x2e, 0x70, 0x62, 0x2e, 0x52, 0x50, 0x43, 0x53, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x12,
|
|
|
|
|
|
0x49, 0x0a, 0x15, 0x72, 0x65, 0x73, 0x65, 0x74, 0x4e, 0x6f, 0x64, 0x65, 0x41, 0x63, 0x74, 0x69,
|
|
|
|
|
|
0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x20, 0x2e, 0x70, 0x62, 0x2e, 0x52, 0x65,
|
|
|
|
|
|
0x73, 0x65, 0x74, 0x4e, 0x6f, 0x64, 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61,
|
|
|
|
|
|
0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x0e, 0x2e, 0x70, 0x62, 0x2e,
|
|
|
|
|
|
0x52, 0x50, 0x43, 0x53, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x12, 0x95, 0x01, 0x0a, 0x28, 0x66,
|
2023-06-01 17:48:01 +08:00
|
|
|
|
0x69, 0x6e, 0x64, 0x41, 0x6c, 0x6c, 0x4e, 0x6f, 0x64, 0x65, 0x53, 0x63, 0x68, 0x65, 0x64, 0x75,
|
|
|
|
|
|
0x6c, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x57, 0x69, 0x74, 0x68, 0x4e, 0x6f, 0x64, 0x65, 0x43, 0x6c,
|
2023-07-24 09:56:49 +08:00
|
|
|
|
0x75, 0x73, 0x74, 0x65, 0x72, 0x49, 0x64, 0x12, 0x33, 0x2e, 0x70, 0x62, 0x2e, 0x46, 0x69, 0x6e,
|
|
|
|
|
|
0x64, 0x41, 0x6c, 0x6c, 0x4e, 0x6f, 0x64, 0x65, 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65,
|
|
|
|
|
|
0x49, 0x6e, 0x66, 0x6f, 0x57, 0x69, 0x74, 0x68, 0x4e, 0x6f, 0x64, 0x65, 0x43, 0x6c, 0x75, 0x73,
|
|
|
|
|
|
0x74, 0x65, 0x72, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x34, 0x2e, 0x70,
|
|
|
|
|
|
0x62, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x41, 0x6c, 0x6c, 0x4e, 0x6f, 0x64, 0x65, 0x53, 0x63, 0x68,
|
|
|
|
|
|
0x65, 0x64, 0x75, 0x6c, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x57, 0x69, 0x74, 0x68, 0x4e, 0x6f, 0x64,
|
|
|
|
|
|
0x65, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
|
|
|
|
|
|
0x73, 0x65, 0x12, 0x53, 0x0a, 0x1a, 0x63, 0x6f, 0x70, 0x79, 0x4e, 0x6f, 0x64, 0x65, 0x41, 0x63,
|
|
|
|
|
|
0x74, 0x69, 0x6f, 0x6e, 0x73, 0x54, 0x6f, 0x4e, 0x6f, 0x64, 0x65, 0x47, 0x72, 0x6f, 0x75, 0x70,
|
|
|
|
|
|
0x12, 0x25, 0x2e, 0x70, 0x62, 0x2e, 0x43, 0x6f, 0x70, 0x79, 0x4e, 0x6f, 0x64, 0x65, 0x41, 0x63,
|
|
|
|
|
|
0x74, 0x69, 0x6f, 0x6e, 0x73, 0x54, 0x6f, 0x4e, 0x6f, 0x64, 0x65, 0x47, 0x72, 0x6f, 0x75, 0x70,
|
|
|
|
|
|
0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x0e, 0x2e, 0x70, 0x62, 0x2e, 0x52, 0x50, 0x43,
|
|
|
|
|
|
0x53, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x12, 0x57, 0x0a, 0x1c, 0x63, 0x6f, 0x70, 0x79, 0x4e,
|
|
|
|
|
|
0x6f, 0x64, 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x54, 0x6f, 0x4e, 0x6f, 0x64, 0x65,
|
|
|
|
|
|
0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x12, 0x27, 0x2e, 0x70, 0x62, 0x2e, 0x43, 0x6f, 0x70,
|
|
|
|
|
|
0x79, 0x4e, 0x6f, 0x64, 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x54, 0x6f, 0x4e, 0x6f,
|
|
|
|
|
|
0x64, 0x65, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
|
|
|
|
|
|
0x1a, 0x0e, 0x2e, 0x70, 0x62, 0x2e, 0x52, 0x50, 0x43, 0x53, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73,
|
|
|
|
|
|
0x12, 0x50, 0x0a, 0x11, 0x66, 0x69, 0x6e, 0x64, 0x4e, 0x6f, 0x64, 0x65, 0x54, 0x4f, 0x41, 0x43,
|
|
|
|
|
|
0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x1c, 0x2e, 0x70, 0x62, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x4e,
|
|
|
|
|
|
0x6f, 0x64, 0x65, 0x54, 0x4f, 0x41, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x65, 0x71, 0x75,
|
|
|
|
|
|
0x65, 0x73, 0x74, 0x1a, 0x1d, 0x2e, 0x70, 0x62, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x4e, 0x6f, 0x64,
|
|
|
|
|
|
0x65, 0x54, 0x4f, 0x41, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
|
|
|
|
|
|
0x73, 0x65, 0x42, 0x06, 0x5a, 0x04, 0x2e, 0x2f, 0x70, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74,
|
|
|
|
|
|
0x6f, 0x33,
|
2020-09-13 19:27:47 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
var (
|
|
|
|
|
|
file_service_node_proto_rawDescOnce sync.Once
|
|
|
|
|
|
file_service_node_proto_rawDescData = file_service_node_proto_rawDesc
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
func file_service_node_proto_rawDescGZIP() []byte {
|
|
|
|
|
|
file_service_node_proto_rawDescOnce.Do(func() {
|
|
|
|
|
|
file_service_node_proto_rawDescData = protoimpl.X.CompressGZIP(file_service_node_proto_rawDescData)
|
|
|
|
|
|
})
|
|
|
|
|
|
return file_service_node_proto_rawDescData
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2023-07-24 09:56:49 +08:00
|
|
|
|
var file_service_node_proto_msgTypes = make([]protoimpl.MessageInfo, 105)
|
2020-09-13 19:27:47 +08:00
|
|
|
|
var file_service_node_proto_goTypes = []interface{}{
|
2023-05-19 11:12:09 +08:00
|
|
|
|
(*CreateNodeRequest)(nil), // 0: pb.CreateNodeRequest
|
|
|
|
|
|
(*CreateNodeResponse)(nil), // 1: pb.CreateNodeResponse
|
|
|
|
|
|
(*RegisterClusterNodeRequest)(nil), // 2: pb.RegisterClusterNodeRequest
|
|
|
|
|
|
(*RegisterClusterNodeResponse)(nil), // 3: pb.RegisterClusterNodeResponse
|
|
|
|
|
|
(*CountAllEnabledNodesRequest)(nil), // 4: pb.CountAllEnabledNodesRequest
|
|
|
|
|
|
(*ListEnabledNodesMatchRequest)(nil), // 5: pb.ListEnabledNodesMatchRequest
|
|
|
|
|
|
(*ListEnabledNodesMatchResponse)(nil), // 6: pb.ListEnabledNodesMatchResponse
|
|
|
|
|
|
(*FindAllEnabledNodesWithNodeClusterIdRequest)(nil), // 7: pb.FindAllEnabledNodesWithNodeClusterIdRequest
|
|
|
|
|
|
(*FindAllEnabledNodesWithNodeClusterIdResponse)(nil), // 8: pb.FindAllEnabledNodesWithNodeClusterIdResponse
|
|
|
|
|
|
(*DeleteNodeRequest)(nil), // 9: pb.DeleteNodeRequest
|
|
|
|
|
|
(*DeleteNodeFromNodeClusterRequest)(nil), // 10: pb.DeleteNodeFromNodeClusterRequest
|
|
|
|
|
|
(*UpdateNodeRequest)(nil), // 11: pb.UpdateNodeRequest
|
|
|
|
|
|
(*FindEnabledNodeRequest)(nil), // 12: pb.FindEnabledNodeRequest
|
|
|
|
|
|
(*FindEnabledNodeResponse)(nil), // 13: pb.FindEnabledNodeResponse
|
|
|
|
|
|
(*FindEnabledBasicNodeRequest)(nil), // 14: pb.FindEnabledBasicNodeRequest
|
|
|
|
|
|
(*FindEnabledBasicNodeResponse)(nil), // 15: pb.FindEnabledBasicNodeResponse
|
|
|
|
|
|
(*FindCurrentNodeConfigRequest)(nil), // 16: pb.FindCurrentNodeConfigRequest
|
|
|
|
|
|
(*FindCurrentNodeConfigResponse)(nil), // 17: pb.FindCurrentNodeConfigResponse
|
|
|
|
|
|
(*NodeStreamMessage)(nil), // 18: pb.NodeStreamMessage
|
|
|
|
|
|
(*UpdateNodeStatusRequest)(nil), // 19: pb.UpdateNodeStatusRequest
|
|
|
|
|
|
(*CountAllEnabledNodesMatchRequest)(nil), // 20: pb.CountAllEnabledNodesMatchRequest
|
|
|
|
|
|
(*UpdateNodeIsInstalledRequest)(nil), // 21: pb.UpdateNodeIsInstalledRequest
|
|
|
|
|
|
(*InstallNodeRequest)(nil), // 22: pb.InstallNodeRequest
|
|
|
|
|
|
(*InstallNodeResponse)(nil), // 23: pb.InstallNodeResponse
|
|
|
|
|
|
(*UpgradeNodeRequest)(nil), // 24: pb.UpgradeNodeRequest
|
|
|
|
|
|
(*UpgradeNodeResponse)(nil), // 25: pb.UpgradeNodeResponse
|
|
|
|
|
|
(*StartNodeRequest)(nil), // 26: pb.StartNodeRequest
|
|
|
|
|
|
(*StartNodeResponse)(nil), // 27: pb.StartNodeResponse
|
|
|
|
|
|
(*StopNodeRequest)(nil), // 28: pb.StopNodeRequest
|
|
|
|
|
|
(*StopNodeResponse)(nil), // 29: pb.StopNodeResponse
|
|
|
|
|
|
(*UpdateNodeConnectedAPINodesRequest)(nil), // 30: pb.UpdateNodeConnectedAPINodesRequest
|
|
|
|
|
|
(*CountAllEnabledNodesWithNodeGrantIdRequest)(nil), // 31: pb.CountAllEnabledNodesWithNodeGrantIdRequest
|
|
|
|
|
|
(*FindAllEnabledNodesWithNodeGrantIdRequest)(nil), // 32: pb.FindAllEnabledNodesWithNodeGrantIdRequest
|
|
|
|
|
|
(*FindAllEnabledNodesWithNodeGrantIdResponse)(nil), // 33: pb.FindAllEnabledNodesWithNodeGrantIdResponse
|
|
|
|
|
|
(*FindAllNotInstalledNodesWithNodeClusterIdRequest)(nil), // 34: pb.FindAllNotInstalledNodesWithNodeClusterIdRequest
|
|
|
|
|
|
(*FindAllNotInstalledNodesWithNodeClusterIdResponse)(nil), // 35: pb.FindAllNotInstalledNodesWithNodeClusterIdResponse
|
|
|
|
|
|
(*CountAllNotInstalledNodesWithNodeClusterIdRequest)(nil), // 36: pb.CountAllNotInstalledNodesWithNodeClusterIdRequest
|
|
|
|
|
|
(*CountAllUpgradeNodesWithNodeClusterIdRequest)(nil), // 37: pb.CountAllUpgradeNodesWithNodeClusterIdRequest
|
|
|
|
|
|
(*FindAllUpgradeNodesWithNodeClusterIdRequest)(nil), // 38: pb.FindAllUpgradeNodesWithNodeClusterIdRequest
|
|
|
|
|
|
(*FindAllUpgradeNodesWithNodeClusterIdResponse)(nil), // 39: pb.FindAllUpgradeNodesWithNodeClusterIdResponse
|
|
|
|
|
|
(*FindNodeInstallStatusRequest)(nil), // 40: pb.FindNodeInstallStatusRequest
|
|
|
|
|
|
(*FindNodeInstallStatusResponse)(nil), // 41: pb.FindNodeInstallStatusResponse
|
|
|
|
|
|
(*UpdateNodeLoginRequest)(nil), // 42: pb.UpdateNodeLoginRequest
|
|
|
|
|
|
(*CountAllEnabledNodesWithNodeGroupIdRequest)(nil), // 43: pb.CountAllEnabledNodesWithNodeGroupIdRequest
|
|
|
|
|
|
(*FindAllEnabledNodesDNSWithNodeClusterIdRequest)(nil), // 44: pb.FindAllEnabledNodesDNSWithNodeClusterIdRequest
|
|
|
|
|
|
(*FindAllEnabledNodesDNSWithNodeClusterIdResponse)(nil), // 45: pb.FindAllEnabledNodesDNSWithNodeClusterIdResponse
|
|
|
|
|
|
(*NodeDNSInfo)(nil), // 46: pb.NodeDNSInfo
|
|
|
|
|
|
(*FindEnabledNodeDNSRequest)(nil), // 47: pb.FindEnabledNodeDNSRequest
|
|
|
|
|
|
(*FindEnabledNodeDNSResponse)(nil), // 48: pb.FindEnabledNodeDNSResponse
|
|
|
|
|
|
(*UpdateNodeDNSRequest)(nil), // 49: pb.UpdateNodeDNSRequest
|
|
|
|
|
|
(*CountAllEnabledNodesWithNodeRegionIdRequest)(nil), // 50: pb.CountAllEnabledNodesWithNodeRegionIdRequest
|
|
|
|
|
|
(*FindEnabledNodesWithIdsRequest)(nil), // 51: pb.FindEnabledNodesWithIdsRequest
|
|
|
|
|
|
(*FindEnabledNodesWithIdsResponse)(nil), // 52: pb.FindEnabledNodesWithIdsResponse
|
|
|
|
|
|
(*CheckNodeLatestVersionRequest)(nil), // 53: pb.CheckNodeLatestVersionRequest
|
|
|
|
|
|
(*CheckNodeLatestVersionResponse)(nil), // 54: pb.CheckNodeLatestVersionResponse
|
|
|
|
|
|
(*UpdateNodeUpRequest)(nil), // 55: pb.UpdateNodeUpRequest
|
|
|
|
|
|
(*DownloadNodeInstallationFileRequest)(nil), // 56: pb.DownloadNodeInstallationFileRequest
|
|
|
|
|
|
(*DownloadNodeInstallationFileResponse)(nil), // 57: pb.DownloadNodeInstallationFileResponse
|
|
|
|
|
|
(*UpdateNodeSystemRequest)(nil), // 58: pb.UpdateNodeSystemRequest
|
|
|
|
|
|
(*UpdateNodeCacheRequest)(nil), // 59: pb.UpdateNodeCacheRequest
|
|
|
|
|
|
(*FindNodeLevelInfoRequest)(nil), // 60: pb.FindNodeLevelInfoRequest
|
|
|
|
|
|
(*FindNodeLevelInfoResponse)(nil), // 61: pb.FindNodeLevelInfoResponse
|
|
|
|
|
|
(*FindNodeDNSResolverRequest)(nil), // 62: pb.FindNodeDNSResolverRequest
|
|
|
|
|
|
(*FindNodeDNSResolverResponse)(nil), // 63: pb.FindNodeDNSResolverResponse
|
|
|
|
|
|
(*UpdateNodeDNSResolverRequest)(nil), // 64: pb.UpdateNodeDNSResolverRequest
|
|
|
|
|
|
(*FindNodeDDoSProtectionRequest)(nil), // 65: pb.FindNodeDDoSProtectionRequest
|
|
|
|
|
|
(*FindNodeDDoSProtectionResponse)(nil), // 66: pb.FindNodeDDoSProtectionResponse
|
|
|
|
|
|
(*UpdateNodeDDoSProtectionRequest)(nil), // 67: pb.UpdateNodeDDoSProtectionRequest
|
|
|
|
|
|
(*FindNodeGlobalServerConfigRequest)(nil), // 68: pb.FindNodeGlobalServerConfigRequest
|
|
|
|
|
|
(*FindNodeGlobalServerConfigResponse)(nil), // 69: pb.FindNodeGlobalServerConfigResponse
|
|
|
|
|
|
(*FindEnabledNodeConfigInfoRequest)(nil), // 70: pb.FindEnabledNodeConfigInfoRequest
|
|
|
|
|
|
(*FindEnabledNodeConfigInfoResponse)(nil), // 71: pb.FindEnabledNodeConfigInfoResponse
|
|
|
|
|
|
(*CountAllNodeRegionInfoRequest)(nil), // 72: pb.CountAllNodeRegionInfoRequest
|
|
|
|
|
|
(*ListNodeRegionInfoRequest)(nil), // 73: pb.ListNodeRegionInfoRequest
|
|
|
|
|
|
(*ListNodeRegionInfoResponse)(nil), // 74: pb.ListNodeRegionInfoResponse
|
|
|
|
|
|
(*UpdateNodeRegionInfoRequest)(nil), // 75: pb.UpdateNodeRegionInfoRequest
|
|
|
|
|
|
(*FindNodeAPIConfigRequest)(nil), // 76: pb.FindNodeAPIConfigRequest
|
|
|
|
|
|
(*FindNodeAPIConfigResponse)(nil), // 77: pb.FindNodeAPIConfigResponse
|
|
|
|
|
|
(*UpdateNodeAPIConfigRequest)(nil), // 78: pb.UpdateNodeAPIConfigRequest
|
|
|
|
|
|
(*FindNodeUAMPoliciesRequest)(nil), // 79: pb.FindNodeUAMPoliciesRequest
|
|
|
|
|
|
(*FindNodeUAMPoliciesResponse)(nil), // 80: pb.FindNodeUAMPoliciesResponse
|
2023-05-23 19:16:09 +08:00
|
|
|
|
(*FindNodeHTTPCCPoliciesRequest)(nil), // 81: pb.FindNodeHTTPCCPoliciesRequest
|
|
|
|
|
|
(*FindNodeHTTPCCPoliciesResponse)(nil), // 82: pb.FindNodeHTTPCCPoliciesResponse
|
2023-06-01 17:48:01 +08:00
|
|
|
|
(*FindNodeHTTP3PoliciesRequest)(nil), // 83: pb.FindNodeHTTP3PoliciesRequest
|
|
|
|
|
|
(*FindNodeHTTP3PoliciesResponse)(nil), // 84: pb.FindNodeHTTP3PoliciesResponse
|
|
|
|
|
|
(*FindNodeHTTPPagesPoliciesRequest)(nil), // 85: pb.FindNodeHTTPPagesPoliciesRequest
|
|
|
|
|
|
(*FindNodeHTTPPagesPoliciesResponse)(nil), // 86: pb.FindNodeHTTPPagesPoliciesResponse
|
|
|
|
|
|
(*FindNodeScheduleInfoRequest)(nil), // 87: pb.FindNodeScheduleInfoRequest
|
|
|
|
|
|
(*FindNodeScheduleInfoResponse)(nil), // 88: pb.FindNodeScheduleInfoResponse
|
|
|
|
|
|
(*UpdateNodeScheduleInfoRequest)(nil), // 89: pb.UpdateNodeScheduleInfoRequest
|
|
|
|
|
|
(*ResetNodeActionStatusRequest)(nil), // 90: pb.ResetNodeActionStatusRequest
|
|
|
|
|
|
(*FindAllNodeScheduleInfoWithNodeClusterIdRequest)(nil), // 91: pb.FindAllNodeScheduleInfoWithNodeClusterIdRequest
|
|
|
|
|
|
(*FindAllNodeScheduleInfoWithNodeClusterIdResponse)(nil), // 92: pb.FindAllNodeScheduleInfoWithNodeClusterIdResponse
|
|
|
|
|
|
(*CopyNodeActionsToNodeGroupRequest)(nil), // 93: pb.CopyNodeActionsToNodeGroupRequest
|
|
|
|
|
|
(*CopyNodeActionsToNodeClusterRequest)(nil), // 94: pb.CopyNodeActionsToNodeClusterRequest
|
2023-07-24 09:56:49 +08:00
|
|
|
|
(*FindNodeTOAConfigRequest)(nil), // 95: pb.FindNodeTOAConfigRequest
|
|
|
|
|
|
(*FindNodeTOAConfigResponse)(nil), // 96: pb.FindNodeTOAConfigResponse
|
|
|
|
|
|
(*FindAllUpgradeNodesWithNodeClusterIdResponse_NodeUpgrade)(nil), // 97: pb.FindAllUpgradeNodesWithNodeClusterIdResponse.NodeUpgrade
|
|
|
|
|
|
(*ListNodeRegionInfoResponse_Info)(nil), // 98: pb.ListNodeRegionInfoResponse.Info
|
|
|
|
|
|
(*FindNodeUAMPoliciesResponse_UAMPolicy)(nil), // 99: pb.FindNodeUAMPoliciesResponse.UAMPolicy
|
|
|
|
|
|
(*FindNodeHTTPCCPoliciesResponse_HTTPCCPolicy)(nil), // 100: pb.FindNodeHTTPCCPoliciesResponse.HTTPCCPolicy
|
|
|
|
|
|
(*FindNodeHTTP3PoliciesResponse_HTTP3Policy)(nil), // 101: pb.FindNodeHTTP3PoliciesResponse.HTTP3Policy
|
|
|
|
|
|
(*FindNodeHTTPPagesPoliciesResponse_HTTPPagesPolicy)(nil), // 102: pb.FindNodeHTTPPagesPoliciesResponse.HTTPPagesPolicy
|
|
|
|
|
|
(*FindNodeScheduleInfoResponse_ScheduleInfo)(nil), // 103: pb.FindNodeScheduleInfoResponse.ScheduleInfo
|
|
|
|
|
|
(*FindAllNodeScheduleInfoWithNodeClusterIdResponse_ScheduleInfo)(nil), // 104: pb.FindAllNodeScheduleInfoWithNodeClusterIdResponse.ScheduleInfo
|
|
|
|
|
|
(*NodeLogin)(nil), // 105: pb.NodeLogin
|
|
|
|
|
|
(*Node)(nil), // 106: pb.Node
|
|
|
|
|
|
(*BasicNode)(nil), // 107: pb.BasicNode
|
|
|
|
|
|
(*NodeInstallStatus)(nil), // 108: pb.NodeInstallStatus
|
|
|
|
|
|
(*DNSRoute)(nil), // 109: pb.DNSRoute
|
|
|
|
|
|
(*SizeCapacity)(nil), // 110: pb.SizeCapacity
|
|
|
|
|
|
(*NodeRegion)(nil), // 111: pb.NodeRegion
|
|
|
|
|
|
(*NodeCluster)(nil), // 112: pb.NodeCluster
|
|
|
|
|
|
(*RPCCountResponse)(nil), // 113: pb.RPCCountResponse
|
|
|
|
|
|
(*RPCSuccess)(nil), // 114: pb.RPCSuccess
|
2020-09-13 19:27:47 +08:00
|
|
|
|
}
|
|
|
|
|
|
var file_service_node_proto_depIdxs = []int32{
|
2023-07-24 09:56:49 +08:00
|
|
|
|
105, // 0: pb.CreateNodeRequest.nodeLogin:type_name -> pb.NodeLogin
|
|
|
|
|
|
106, // 1: pb.ListEnabledNodesMatchResponse.nodes:type_name -> pb.Node
|
|
|
|
|
|
106, // 2: pb.FindAllEnabledNodesWithNodeClusterIdResponse.nodes:type_name -> pb.Node
|
|
|
|
|
|
106, // 3: pb.FindEnabledNodeResponse.node:type_name -> pb.Node
|
|
|
|
|
|
107, // 4: pb.FindEnabledBasicNodeResponse.node:type_name -> pb.BasicNode
|
|
|
|
|
|
106, // 5: pb.FindAllEnabledNodesWithNodeGrantIdResponse.nodes:type_name -> pb.Node
|
|
|
|
|
|
106, // 6: pb.FindAllNotInstalledNodesWithNodeClusterIdResponse.nodes:type_name -> pb.Node
|
|
|
|
|
|
97, // 7: pb.FindAllUpgradeNodesWithNodeClusterIdResponse.nodes:type_name -> pb.FindAllUpgradeNodesWithNodeClusterIdResponse.NodeUpgrade
|
|
|
|
|
|
108, // 8: pb.FindNodeInstallStatusResponse.installStatus:type_name -> pb.NodeInstallStatus
|
|
|
|
|
|
105, // 9: pb.UpdateNodeLoginRequest.nodeLogin:type_name -> pb.NodeLogin
|
2023-05-19 11:12:09 +08:00
|
|
|
|
46, // 10: pb.FindAllEnabledNodesDNSWithNodeClusterIdResponse.nodes:type_name -> pb.NodeDNSInfo
|
2023-07-24 09:56:49 +08:00
|
|
|
|
109, // 11: pb.NodeDNSInfo.routes:type_name -> pb.DNSRoute
|
2023-05-19 11:12:09 +08:00
|
|
|
|
46, // 12: pb.FindEnabledNodeDNSResponse.node:type_name -> pb.NodeDNSInfo
|
2023-07-24 09:56:49 +08:00
|
|
|
|
106, // 13: pb.FindEnabledNodesWithIdsResponse.nodes:type_name -> pb.Node
|
|
|
|
|
|
110, // 14: pb.UpdateNodeCacheRequest.maxCacheDiskCapacity:type_name -> pb.SizeCapacity
|
|
|
|
|
|
110, // 15: pb.UpdateNodeCacheRequest.maxCacheMemoryCapacity:type_name -> pb.SizeCapacity
|
|
|
|
|
|
98, // 16: pb.ListNodeRegionInfoResponse.infoList:type_name -> pb.ListNodeRegionInfoResponse.Info
|
|
|
|
|
|
99, // 17: pb.FindNodeUAMPoliciesResponse.uamPolicies:type_name -> pb.FindNodeUAMPoliciesResponse.UAMPolicy
|
|
|
|
|
|
100, // 18: pb.FindNodeHTTPCCPoliciesResponse.httpCCPolicies:type_name -> pb.FindNodeHTTPCCPoliciesResponse.HTTPCCPolicy
|
|
|
|
|
|
101, // 19: pb.FindNodeHTTP3PoliciesResponse.http3Policies:type_name -> pb.FindNodeHTTP3PoliciesResponse.HTTP3Policy
|
|
|
|
|
|
102, // 20: pb.FindNodeHTTPPagesPoliciesResponse.httpPagesPolicies:type_name -> pb.FindNodeHTTPPagesPoliciesResponse.HTTPPagesPolicy
|
|
|
|
|
|
103, // 21: pb.FindNodeScheduleInfoResponse.scheduleInfo:type_name -> pb.FindNodeScheduleInfoResponse.ScheduleInfo
|
|
|
|
|
|
104, // 22: pb.FindAllNodeScheduleInfoWithNodeClusterIdResponse.nodes:type_name -> pb.FindAllNodeScheduleInfoWithNodeClusterIdResponse.ScheduleInfo
|
|
|
|
|
|
106, // 23: pb.FindAllUpgradeNodesWithNodeClusterIdResponse.NodeUpgrade.node:type_name -> pb.Node
|
|
|
|
|
|
111, // 24: pb.ListNodeRegionInfoResponse.Info.nodeRegion:type_name -> pb.NodeRegion
|
|
|
|
|
|
112, // 25: pb.ListNodeRegionInfoResponse.Info.nodeCluster:type_name -> pb.NodeCluster
|
2023-06-01 17:48:01 +08:00
|
|
|
|
0, // 26: pb.NodeService.createNode:input_type -> pb.CreateNodeRequest
|
|
|
|
|
|
2, // 27: pb.NodeService.registerClusterNode:input_type -> pb.RegisterClusterNodeRequest
|
|
|
|
|
|
4, // 28: pb.NodeService.countAllEnabledNodes:input_type -> pb.CountAllEnabledNodesRequest
|
|
|
|
|
|
20, // 29: pb.NodeService.countAllEnabledNodesMatch:input_type -> pb.CountAllEnabledNodesMatchRequest
|
|
|
|
|
|
5, // 30: pb.NodeService.listEnabledNodesMatch:input_type -> pb.ListEnabledNodesMatchRequest
|
|
|
|
|
|
7, // 31: pb.NodeService.findAllEnabledNodesWithNodeClusterId:input_type -> pb.FindAllEnabledNodesWithNodeClusterIdRequest
|
|
|
|
|
|
9, // 32: pb.NodeService.deleteNode:input_type -> pb.DeleteNodeRequest
|
|
|
|
|
|
10, // 33: pb.NodeService.deleteNodeFromNodeCluster:input_type -> pb.DeleteNodeFromNodeClusterRequest
|
|
|
|
|
|
11, // 34: pb.NodeService.updateNode:input_type -> pb.UpdateNodeRequest
|
|
|
|
|
|
12, // 35: pb.NodeService.findEnabledNode:input_type -> pb.FindEnabledNodeRequest
|
|
|
|
|
|
14, // 36: pb.NodeService.findEnabledBasicNode:input_type -> pb.FindEnabledBasicNodeRequest
|
|
|
|
|
|
16, // 37: pb.NodeService.findCurrentNodeConfig:input_type -> pb.FindCurrentNodeConfigRequest
|
|
|
|
|
|
18, // 38: pb.NodeService.nodeStream:input_type -> pb.NodeStreamMessage
|
|
|
|
|
|
18, // 39: pb.NodeService.sendCommandToNode:input_type -> pb.NodeStreamMessage
|
|
|
|
|
|
19, // 40: pb.NodeService.updateNodeStatus:input_type -> pb.UpdateNodeStatusRequest
|
|
|
|
|
|
21, // 41: pb.NodeService.updateNodeIsInstalled:input_type -> pb.UpdateNodeIsInstalledRequest
|
|
|
|
|
|
22, // 42: pb.NodeService.installNode:input_type -> pb.InstallNodeRequest
|
|
|
|
|
|
24, // 43: pb.NodeService.upgradeNode:input_type -> pb.UpgradeNodeRequest
|
|
|
|
|
|
26, // 44: pb.NodeService.startNode:input_type -> pb.StartNodeRequest
|
|
|
|
|
|
28, // 45: pb.NodeService.stopNode:input_type -> pb.StopNodeRequest
|
|
|
|
|
|
30, // 46: pb.NodeService.updateNodeConnectedAPINodes:input_type -> pb.UpdateNodeConnectedAPINodesRequest
|
|
|
|
|
|
31, // 47: pb.NodeService.countAllEnabledNodesWithNodeGrantId:input_type -> pb.CountAllEnabledNodesWithNodeGrantIdRequest
|
|
|
|
|
|
32, // 48: pb.NodeService.findAllEnabledNodesWithNodeGrantId:input_type -> pb.FindAllEnabledNodesWithNodeGrantIdRequest
|
|
|
|
|
|
36, // 49: pb.NodeService.countAllNotInstalledNodesWithNodeClusterId:input_type -> pb.CountAllNotInstalledNodesWithNodeClusterIdRequest
|
|
|
|
|
|
34, // 50: pb.NodeService.findAllNotInstalledNodesWithNodeClusterId:input_type -> pb.FindAllNotInstalledNodesWithNodeClusterIdRequest
|
|
|
|
|
|
37, // 51: pb.NodeService.countAllUpgradeNodesWithNodeClusterId:input_type -> pb.CountAllUpgradeNodesWithNodeClusterIdRequest
|
|
|
|
|
|
38, // 52: pb.NodeService.findAllUpgradeNodesWithNodeClusterId:input_type -> pb.FindAllUpgradeNodesWithNodeClusterIdRequest
|
|
|
|
|
|
40, // 53: pb.NodeService.findNodeInstallStatus:input_type -> pb.FindNodeInstallStatusRequest
|
|
|
|
|
|
42, // 54: pb.NodeService.updateNodeLogin:input_type -> pb.UpdateNodeLoginRequest
|
|
|
|
|
|
43, // 55: pb.NodeService.countAllEnabledNodesWithNodeGroupId:input_type -> pb.CountAllEnabledNodesWithNodeGroupIdRequest
|
|
|
|
|
|
44, // 56: pb.NodeService.findAllEnabledNodesDNSWithNodeClusterId:input_type -> pb.FindAllEnabledNodesDNSWithNodeClusterIdRequest
|
|
|
|
|
|
47, // 57: pb.NodeService.findEnabledNodeDNS:input_type -> pb.FindEnabledNodeDNSRequest
|
|
|
|
|
|
49, // 58: pb.NodeService.updateNodeDNS:input_type -> pb.UpdateNodeDNSRequest
|
|
|
|
|
|
50, // 59: pb.NodeService.countAllEnabledNodesWithNodeRegionId:input_type -> pb.CountAllEnabledNodesWithNodeRegionIdRequest
|
|
|
|
|
|
51, // 60: pb.NodeService.findEnabledNodesWithIds:input_type -> pb.FindEnabledNodesWithIdsRequest
|
|
|
|
|
|
53, // 61: pb.NodeService.checkNodeLatestVersion:input_type -> pb.CheckNodeLatestVersionRequest
|
|
|
|
|
|
55, // 62: pb.NodeService.updateNodeUp:input_type -> pb.UpdateNodeUpRequest
|
|
|
|
|
|
56, // 63: pb.NodeService.downloadNodeInstallationFile:input_type -> pb.DownloadNodeInstallationFileRequest
|
|
|
|
|
|
58, // 64: pb.NodeService.updateNodeSystem:input_type -> pb.UpdateNodeSystemRequest
|
|
|
|
|
|
59, // 65: pb.NodeService.updateNodeCache:input_type -> pb.UpdateNodeCacheRequest
|
|
|
|
|
|
60, // 66: pb.NodeService.findNodeLevelInfo:input_type -> pb.FindNodeLevelInfoRequest
|
|
|
|
|
|
62, // 67: pb.NodeService.findNodeDNSResolver:input_type -> pb.FindNodeDNSResolverRequest
|
|
|
|
|
|
64, // 68: pb.NodeService.updateNodeDNSResolver:input_type -> pb.UpdateNodeDNSResolverRequest
|
|
|
|
|
|
65, // 69: pb.NodeService.findNodeDDoSProtection:input_type -> pb.FindNodeDDoSProtectionRequest
|
|
|
|
|
|
67, // 70: pb.NodeService.updateNodeDDoSProtection:input_type -> pb.UpdateNodeDDoSProtectionRequest
|
|
|
|
|
|
68, // 71: pb.NodeService.findNodeGlobalServerConfig:input_type -> pb.FindNodeGlobalServerConfigRequest
|
|
|
|
|
|
70, // 72: pb.NodeService.findEnabledNodeConfigInfo:input_type -> pb.FindEnabledNodeConfigInfoRequest
|
|
|
|
|
|
72, // 73: pb.NodeService.countAllNodeRegionInfo:input_type -> pb.CountAllNodeRegionInfoRequest
|
|
|
|
|
|
73, // 74: pb.NodeService.listNodeRegionInfo:input_type -> pb.ListNodeRegionInfoRequest
|
|
|
|
|
|
75, // 75: pb.NodeService.updateNodeRegionInfo:input_type -> pb.UpdateNodeRegionInfoRequest
|
|
|
|
|
|
76, // 76: pb.NodeService.findNodeAPIConfig:input_type -> pb.FindNodeAPIConfigRequest
|
|
|
|
|
|
78, // 77: pb.NodeService.updateNodeAPIConfig:input_type -> pb.UpdateNodeAPIConfigRequest
|
|
|
|
|
|
79, // 78: pb.NodeService.findNodeUAMPolicies:input_type -> pb.FindNodeUAMPoliciesRequest
|
|
|
|
|
|
81, // 79: pb.NodeService.findNodeHTTPCCPolicies:input_type -> pb.FindNodeHTTPCCPoliciesRequest
|
|
|
|
|
|
83, // 80: pb.NodeService.findNodeHTTP3Policies:input_type -> pb.FindNodeHTTP3PoliciesRequest
|
|
|
|
|
|
85, // 81: pb.NodeService.findNodeHTTPPagesPolicies:input_type -> pb.FindNodeHTTPPagesPoliciesRequest
|
|
|
|
|
|
87, // 82: pb.NodeService.findNodeScheduleInfo:input_type -> pb.FindNodeScheduleInfoRequest
|
|
|
|
|
|
89, // 83: pb.NodeService.updateNodeScheduleInfo:input_type -> pb.UpdateNodeScheduleInfoRequest
|
|
|
|
|
|
90, // 84: pb.NodeService.resetNodeActionStatus:input_type -> pb.ResetNodeActionStatusRequest
|
|
|
|
|
|
91, // 85: pb.NodeService.findAllNodeScheduleInfoWithNodeClusterId:input_type -> pb.FindAllNodeScheduleInfoWithNodeClusterIdRequest
|
|
|
|
|
|
93, // 86: pb.NodeService.copyNodeActionsToNodeGroup:input_type -> pb.CopyNodeActionsToNodeGroupRequest
|
|
|
|
|
|
94, // 87: pb.NodeService.copyNodeActionsToNodeCluster:input_type -> pb.CopyNodeActionsToNodeClusterRequest
|
2023-07-24 09:56:49 +08:00
|
|
|
|
95, // 88: pb.NodeService.findNodeTOAConfig:input_type -> pb.FindNodeTOAConfigRequest
|
|
|
|
|
|
1, // 89: pb.NodeService.createNode:output_type -> pb.CreateNodeResponse
|
|
|
|
|
|
3, // 90: pb.NodeService.registerClusterNode:output_type -> pb.RegisterClusterNodeResponse
|
|
|
|
|
|
113, // 91: pb.NodeService.countAllEnabledNodes:output_type -> pb.RPCCountResponse
|
|
|
|
|
|
113, // 92: pb.NodeService.countAllEnabledNodesMatch:output_type -> pb.RPCCountResponse
|
|
|
|
|
|
6, // 93: pb.NodeService.listEnabledNodesMatch:output_type -> pb.ListEnabledNodesMatchResponse
|
|
|
|
|
|
8, // 94: pb.NodeService.findAllEnabledNodesWithNodeClusterId:output_type -> pb.FindAllEnabledNodesWithNodeClusterIdResponse
|
|
|
|
|
|
114, // 95: pb.NodeService.deleteNode:output_type -> pb.RPCSuccess
|
|
|
|
|
|
114, // 96: pb.NodeService.deleteNodeFromNodeCluster:output_type -> pb.RPCSuccess
|
|
|
|
|
|
114, // 97: pb.NodeService.updateNode:output_type -> pb.RPCSuccess
|
|
|
|
|
|
13, // 98: pb.NodeService.findEnabledNode:output_type -> pb.FindEnabledNodeResponse
|
|
|
|
|
|
15, // 99: pb.NodeService.findEnabledBasicNode:output_type -> pb.FindEnabledBasicNodeResponse
|
|
|
|
|
|
17, // 100: pb.NodeService.findCurrentNodeConfig:output_type -> pb.FindCurrentNodeConfigResponse
|
|
|
|
|
|
18, // 101: pb.NodeService.nodeStream:output_type -> pb.NodeStreamMessage
|
|
|
|
|
|
18, // 102: pb.NodeService.sendCommandToNode:output_type -> pb.NodeStreamMessage
|
|
|
|
|
|
114, // 103: pb.NodeService.updateNodeStatus:output_type -> pb.RPCSuccess
|
|
|
|
|
|
114, // 104: pb.NodeService.updateNodeIsInstalled:output_type -> pb.RPCSuccess
|
|
|
|
|
|
23, // 105: pb.NodeService.installNode:output_type -> pb.InstallNodeResponse
|
|
|
|
|
|
25, // 106: pb.NodeService.upgradeNode:output_type -> pb.UpgradeNodeResponse
|
|
|
|
|
|
27, // 107: pb.NodeService.startNode:output_type -> pb.StartNodeResponse
|
|
|
|
|
|
29, // 108: pb.NodeService.stopNode:output_type -> pb.StopNodeResponse
|
|
|
|
|
|
114, // 109: pb.NodeService.updateNodeConnectedAPINodes:output_type -> pb.RPCSuccess
|
|
|
|
|
|
113, // 110: pb.NodeService.countAllEnabledNodesWithNodeGrantId:output_type -> pb.RPCCountResponse
|
|
|
|
|
|
33, // 111: pb.NodeService.findAllEnabledNodesWithNodeGrantId:output_type -> pb.FindAllEnabledNodesWithNodeGrantIdResponse
|
|
|
|
|
|
113, // 112: pb.NodeService.countAllNotInstalledNodesWithNodeClusterId:output_type -> pb.RPCCountResponse
|
|
|
|
|
|
35, // 113: pb.NodeService.findAllNotInstalledNodesWithNodeClusterId:output_type -> pb.FindAllNotInstalledNodesWithNodeClusterIdResponse
|
|
|
|
|
|
113, // 114: pb.NodeService.countAllUpgradeNodesWithNodeClusterId:output_type -> pb.RPCCountResponse
|
|
|
|
|
|
39, // 115: pb.NodeService.findAllUpgradeNodesWithNodeClusterId:output_type -> pb.FindAllUpgradeNodesWithNodeClusterIdResponse
|
|
|
|
|
|
41, // 116: pb.NodeService.findNodeInstallStatus:output_type -> pb.FindNodeInstallStatusResponse
|
|
|
|
|
|
114, // 117: pb.NodeService.updateNodeLogin:output_type -> pb.RPCSuccess
|
|
|
|
|
|
113, // 118: pb.NodeService.countAllEnabledNodesWithNodeGroupId:output_type -> pb.RPCCountResponse
|
|
|
|
|
|
45, // 119: pb.NodeService.findAllEnabledNodesDNSWithNodeClusterId:output_type -> pb.FindAllEnabledNodesDNSWithNodeClusterIdResponse
|
|
|
|
|
|
48, // 120: pb.NodeService.findEnabledNodeDNS:output_type -> pb.FindEnabledNodeDNSResponse
|
|
|
|
|
|
114, // 121: pb.NodeService.updateNodeDNS:output_type -> pb.RPCSuccess
|
|
|
|
|
|
113, // 122: pb.NodeService.countAllEnabledNodesWithNodeRegionId:output_type -> pb.RPCCountResponse
|
|
|
|
|
|
52, // 123: pb.NodeService.findEnabledNodesWithIds:output_type -> pb.FindEnabledNodesWithIdsResponse
|
|
|
|
|
|
54, // 124: pb.NodeService.checkNodeLatestVersion:output_type -> pb.CheckNodeLatestVersionResponse
|
|
|
|
|
|
114, // 125: pb.NodeService.updateNodeUp:output_type -> pb.RPCSuccess
|
|
|
|
|
|
57, // 126: pb.NodeService.downloadNodeInstallationFile:output_type -> pb.DownloadNodeInstallationFileResponse
|
|
|
|
|
|
114, // 127: pb.NodeService.updateNodeSystem:output_type -> pb.RPCSuccess
|
|
|
|
|
|
114, // 128: pb.NodeService.updateNodeCache:output_type -> pb.RPCSuccess
|
|
|
|
|
|
61, // 129: pb.NodeService.findNodeLevelInfo:output_type -> pb.FindNodeLevelInfoResponse
|
|
|
|
|
|
63, // 130: pb.NodeService.findNodeDNSResolver:output_type -> pb.FindNodeDNSResolverResponse
|
|
|
|
|
|
114, // 131: pb.NodeService.updateNodeDNSResolver:output_type -> pb.RPCSuccess
|
|
|
|
|
|
66, // 132: pb.NodeService.findNodeDDoSProtection:output_type -> pb.FindNodeDDoSProtectionResponse
|
|
|
|
|
|
114, // 133: pb.NodeService.updateNodeDDoSProtection:output_type -> pb.RPCSuccess
|
|
|
|
|
|
69, // 134: pb.NodeService.findNodeGlobalServerConfig:output_type -> pb.FindNodeGlobalServerConfigResponse
|
|
|
|
|
|
71, // 135: pb.NodeService.findEnabledNodeConfigInfo:output_type -> pb.FindEnabledNodeConfigInfoResponse
|
|
|
|
|
|
113, // 136: pb.NodeService.countAllNodeRegionInfo:output_type -> pb.RPCCountResponse
|
|
|
|
|
|
74, // 137: pb.NodeService.listNodeRegionInfo:output_type -> pb.ListNodeRegionInfoResponse
|
|
|
|
|
|
114, // 138: pb.NodeService.updateNodeRegionInfo:output_type -> pb.RPCSuccess
|
|
|
|
|
|
77, // 139: pb.NodeService.findNodeAPIConfig:output_type -> pb.FindNodeAPIConfigResponse
|
|
|
|
|
|
114, // 140: pb.NodeService.updateNodeAPIConfig:output_type -> pb.RPCSuccess
|
|
|
|
|
|
80, // 141: pb.NodeService.findNodeUAMPolicies:output_type -> pb.FindNodeUAMPoliciesResponse
|
|
|
|
|
|
82, // 142: pb.NodeService.findNodeHTTPCCPolicies:output_type -> pb.FindNodeHTTPCCPoliciesResponse
|
|
|
|
|
|
84, // 143: pb.NodeService.findNodeHTTP3Policies:output_type -> pb.FindNodeHTTP3PoliciesResponse
|
|
|
|
|
|
86, // 144: pb.NodeService.findNodeHTTPPagesPolicies:output_type -> pb.FindNodeHTTPPagesPoliciesResponse
|
|
|
|
|
|
88, // 145: pb.NodeService.findNodeScheduleInfo:output_type -> pb.FindNodeScheduleInfoResponse
|
|
|
|
|
|
114, // 146: pb.NodeService.updateNodeScheduleInfo:output_type -> pb.RPCSuccess
|
|
|
|
|
|
114, // 147: pb.NodeService.resetNodeActionStatus:output_type -> pb.RPCSuccess
|
|
|
|
|
|
92, // 148: pb.NodeService.findAllNodeScheduleInfoWithNodeClusterId:output_type -> pb.FindAllNodeScheduleInfoWithNodeClusterIdResponse
|
|
|
|
|
|
114, // 149: pb.NodeService.copyNodeActionsToNodeGroup:output_type -> pb.RPCSuccess
|
|
|
|
|
|
114, // 150: pb.NodeService.copyNodeActionsToNodeCluster:output_type -> pb.RPCSuccess
|
|
|
|
|
|
96, // 151: pb.NodeService.findNodeTOAConfig:output_type -> pb.FindNodeTOAConfigResponse
|
|
|
|
|
|
89, // [89:152] is the sub-list for method output_type
|
|
|
|
|
|
26, // [26:89] is the sub-list for method input_type
|
2023-06-01 17:48:01 +08:00
|
|
|
|
26, // [26:26] is the sub-list for extension type_name
|
|
|
|
|
|
26, // [26:26] is the sub-list for extension extendee
|
|
|
|
|
|
0, // [0:26] is the sub-list for field type_name
|
2020-09-13 19:27:47 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func init() { file_service_node_proto_init() }
|
|
|
|
|
|
func file_service_node_proto_init() {
|
|
|
|
|
|
if File_service_node_proto != nil {
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
2021-01-25 16:41:30 +08:00
|
|
|
|
file_models_model_node_proto_init()
|
|
|
|
|
|
file_models_model_node_login_proto_init()
|
|
|
|
|
|
file_models_model_node_install_status_proto_init()
|
|
|
|
|
|
file_models_model_dns_route_proto_init()
|
2021-05-12 21:38:02 +08:00
|
|
|
|
file_models_model_size_capacity_proto_init()
|
2022-10-20 15:14:22 +08:00
|
|
|
|
file_models_model_node_cluster_proto_init()
|
|
|
|
|
|
file_models_model_node_region_proto_init()
|
2021-01-25 16:41:30 +08:00
|
|
|
|
file_models_rpc_messages_proto_init()
|
2020-09-13 19:27:47 +08:00
|
|
|
|
if !protoimpl.UnsafeEnabled {
|
|
|
|
|
|
file_service_node_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
|
|
|
|
switch v := v.(*CreateNodeRequest); i {
|
|
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
file_service_node_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
|
|
|
|
|
|
switch v := v.(*CreateNodeResponse); i {
|
|
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
file_service_node_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
|
2020-10-17 11:14:44 +08:00
|
|
|
|
switch v := v.(*RegisterClusterNodeRequest); i {
|
2020-09-13 19:27:47 +08:00
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
file_service_node_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
|
2020-10-17 11:14:44 +08:00
|
|
|
|
switch v := v.(*RegisterClusterNodeResponse); i {
|
2020-09-13 19:27:47 +08:00
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
file_service_node_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
|
2020-10-17 11:14:44 +08:00
|
|
|
|
switch v := v.(*CountAllEnabledNodesRequest); i {
|
2020-09-13 19:27:47 +08:00
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
file_service_node_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
|
2020-10-17 11:14:44 +08:00
|
|
|
|
switch v := v.(*ListEnabledNodesMatchRequest); i {
|
2020-09-13 19:27:47 +08:00
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2020-11-12 14:41:23 +08:00
|
|
|
|
file_service_node_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
|
2020-10-17 11:14:44 +08:00
|
|
|
|
switch v := v.(*ListEnabledNodesMatchResponse); i {
|
2020-09-13 19:27:47 +08:00
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2020-11-12 14:41:23 +08:00
|
|
|
|
file_service_node_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
|
2021-05-25 17:08:52 +08:00
|
|
|
|
switch v := v.(*FindAllEnabledNodesWithNodeClusterIdRequest); i {
|
2020-09-13 19:27:47 +08:00
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2020-11-12 14:41:23 +08:00
|
|
|
|
file_service_node_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
|
2021-05-25 17:08:52 +08:00
|
|
|
|
switch v := v.(*FindAllEnabledNodesWithNodeClusterIdResponse); i {
|
2020-09-13 19:27:47 +08:00
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2020-11-12 14:41:23 +08:00
|
|
|
|
file_service_node_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
|
2020-11-15 21:17:37 +08:00
|
|
|
|
switch v := v.(*DeleteNodeRequest); i {
|
2020-09-13 19:27:47 +08:00
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2020-11-12 14:41:23 +08:00
|
|
|
|
file_service_node_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
|
2021-07-31 22:23:16 +08:00
|
|
|
|
switch v := v.(*DeleteNodeFromNodeClusterRequest); i {
|
2020-09-13 19:27:47 +08:00
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2020-11-15 21:17:37 +08:00
|
|
|
|
file_service_node_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
|
2021-07-31 22:23:16 +08:00
|
|
|
|
switch v := v.(*UpdateNodeRequest); i {
|
2020-09-13 19:27:47 +08:00
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2020-11-15 21:17:37 +08:00
|
|
|
|
file_service_node_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
|
2021-07-31 22:23:16 +08:00
|
|
|
|
switch v := v.(*FindEnabledNodeRequest); i {
|
2020-09-13 19:27:47 +08:00
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2020-11-15 21:17:37 +08:00
|
|
|
|
file_service_node_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
|
2021-07-31 22:23:16 +08:00
|
|
|
|
switch v := v.(*FindEnabledNodeResponse); i {
|
2020-09-13 19:27:47 +08:00
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2020-11-15 21:17:37 +08:00
|
|
|
|
file_service_node_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
switch v := v.(*FindEnabledBasicNodeRequest); i {
|
2020-09-13 19:27:47 +08:00
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2020-11-15 21:17:37 +08:00
|
|
|
|
file_service_node_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
switch v := v.(*FindEnabledBasicNodeResponse); i {
|
2020-09-13 19:27:47 +08:00
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2020-11-15 21:17:37 +08:00
|
|
|
|
file_service_node_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
switch v := v.(*FindCurrentNodeConfigRequest); i {
|
2020-09-13 19:27:47 +08:00
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2020-11-15 21:17:37 +08:00
|
|
|
|
file_service_node_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
switch v := v.(*FindCurrentNodeConfigResponse); i {
|
2020-09-13 19:27:47 +08:00
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2020-11-15 21:17:37 +08:00
|
|
|
|
file_service_node_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
switch v := v.(*NodeStreamMessage); i {
|
2020-09-13 19:27:47 +08:00
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2020-11-15 21:17:37 +08:00
|
|
|
|
file_service_node_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
switch v := v.(*UpdateNodeStatusRequest); i {
|
2020-09-13 19:27:47 +08:00
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2020-11-15 21:17:37 +08:00
|
|
|
|
file_service_node_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
switch v := v.(*CountAllEnabledNodesMatchRequest); i {
|
2020-09-13 19:27:47 +08:00
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2020-11-15 21:17:37 +08:00
|
|
|
|
file_service_node_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
switch v := v.(*UpdateNodeIsInstalledRequest); i {
|
2020-10-17 11:14:44 +08:00
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2020-11-15 21:17:37 +08:00
|
|
|
|
file_service_node_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
switch v := v.(*InstallNodeRequest); i {
|
2020-10-17 11:14:44 +08:00
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2020-11-15 21:17:37 +08:00
|
|
|
|
file_service_node_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
switch v := v.(*InstallNodeResponse); i {
|
2020-10-04 16:10:19 +08:00
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2020-11-15 21:17:37 +08:00
|
|
|
|
file_service_node_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
switch v := v.(*UpgradeNodeRequest); i {
|
2020-10-25 21:27:49 +08:00
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2020-11-15 21:17:37 +08:00
|
|
|
|
file_service_node_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
switch v := v.(*UpgradeNodeResponse); i {
|
2020-10-25 21:27:49 +08:00
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2020-11-15 21:17:37 +08:00
|
|
|
|
file_service_node_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
switch v := v.(*StartNodeRequest); i {
|
2020-10-25 21:27:49 +08:00
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2020-11-15 21:17:37 +08:00
|
|
|
|
file_service_node_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
switch v := v.(*StartNodeResponse); i {
|
2020-10-25 21:27:49 +08:00
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2020-11-15 21:17:37 +08:00
|
|
|
|
file_service_node_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
switch v := v.(*StopNodeRequest); i {
|
2020-10-26 21:15:13 +08:00
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2020-11-15 21:17:37 +08:00
|
|
|
|
file_service_node_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
switch v := v.(*StopNodeResponse); i {
|
2020-10-26 21:15:13 +08:00
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2020-11-15 21:17:37 +08:00
|
|
|
|
file_service_node_proto_msgTypes[30].Exporter = func(v interface{}, i int) interface{} {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
switch v := v.(*UpdateNodeConnectedAPINodesRequest); i {
|
2020-10-26 21:15:13 +08:00
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2020-11-15 21:17:37 +08:00
|
|
|
|
file_service_node_proto_msgTypes[31].Exporter = func(v interface{}, i int) interface{} {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
switch v := v.(*CountAllEnabledNodesWithNodeGrantIdRequest); i {
|
2020-10-27 12:33:18 +08:00
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2020-11-15 21:17:37 +08:00
|
|
|
|
file_service_node_proto_msgTypes[32].Exporter = func(v interface{}, i int) interface{} {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
switch v := v.(*FindAllEnabledNodesWithNodeGrantIdRequest); i {
|
2020-10-27 12:33:18 +08:00
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2020-11-15 21:17:37 +08:00
|
|
|
|
file_service_node_proto_msgTypes[33].Exporter = func(v interface{}, i int) interface{} {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
switch v := v.(*FindAllEnabledNodesWithNodeGrantIdResponse); i {
|
2020-10-27 12:33:18 +08:00
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2020-11-15 21:17:37 +08:00
|
|
|
|
file_service_node_proto_msgTypes[34].Exporter = func(v interface{}, i int) interface{} {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
switch v := v.(*FindAllNotInstalledNodesWithNodeClusterIdRequest); i {
|
2020-10-27 12:33:18 +08:00
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2020-11-15 21:17:37 +08:00
|
|
|
|
file_service_node_proto_msgTypes[35].Exporter = func(v interface{}, i int) interface{} {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
switch v := v.(*FindAllNotInstalledNodesWithNodeClusterIdResponse); i {
|
2020-10-28 12:36:11 +08:00
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2020-11-15 21:17:37 +08:00
|
|
|
|
file_service_node_proto_msgTypes[36].Exporter = func(v interface{}, i int) interface{} {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
switch v := v.(*CountAllNotInstalledNodesWithNodeClusterIdRequest); i {
|
2020-10-28 12:36:11 +08:00
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2020-11-15 21:17:37 +08:00
|
|
|
|
file_service_node_proto_msgTypes[37].Exporter = func(v interface{}, i int) interface{} {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
switch v := v.(*CountAllUpgradeNodesWithNodeClusterIdRequest); i {
|
2020-10-28 12:36:11 +08:00
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2020-11-15 21:17:37 +08:00
|
|
|
|
file_service_node_proto_msgTypes[38].Exporter = func(v interface{}, i int) interface{} {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
switch v := v.(*FindAllUpgradeNodesWithNodeClusterIdRequest); i {
|
2020-10-28 12:36:11 +08:00
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2020-11-15 21:17:37 +08:00
|
|
|
|
file_service_node_proto_msgTypes[39].Exporter = func(v interface{}, i int) interface{} {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
switch v := v.(*FindAllUpgradeNodesWithNodeClusterIdResponse); i {
|
2020-10-26 21:15:13 +08:00
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2020-11-15 21:17:37 +08:00
|
|
|
|
file_service_node_proto_msgTypes[40].Exporter = func(v interface{}, i int) interface{} {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
switch v := v.(*FindNodeInstallStatusRequest); i {
|
2020-10-28 18:21:26 +08:00
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2020-11-15 21:17:37 +08:00
|
|
|
|
file_service_node_proto_msgTypes[41].Exporter = func(v interface{}, i int) interface{} {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
switch v := v.(*FindNodeInstallStatusResponse); i {
|
2020-11-14 09:42:11 +08:00
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2020-11-15 21:17:37 +08:00
|
|
|
|
file_service_node_proto_msgTypes[42].Exporter = func(v interface{}, i int) interface{} {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
switch v := v.(*UpdateNodeLoginRequest); i {
|
2020-11-14 09:42:11 +08:00
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2020-11-15 21:17:37 +08:00
|
|
|
|
file_service_node_proto_msgTypes[43].Exporter = func(v interface{}, i int) interface{} {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
switch v := v.(*CountAllEnabledNodesWithNodeGroupIdRequest); i {
|
2020-11-14 09:42:11 +08:00
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2020-11-15 21:17:37 +08:00
|
|
|
|
file_service_node_proto_msgTypes[44].Exporter = func(v interface{}, i int) interface{} {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
switch v := v.(*FindAllEnabledNodesDNSWithNodeClusterIdRequest); i {
|
2020-11-14 09:42:11 +08:00
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2020-11-15 21:17:37 +08:00
|
|
|
|
file_service_node_proto_msgTypes[45].Exporter = func(v interface{}, i int) interface{} {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
switch v := v.(*FindAllEnabledNodesDNSWithNodeClusterIdResponse); i {
|
2020-11-14 09:42:11 +08:00
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2020-11-15 21:17:37 +08:00
|
|
|
|
file_service_node_proto_msgTypes[46].Exporter = func(v interface{}, i int) interface{} {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
switch v := v.(*NodeDNSInfo); i {
|
2020-11-14 09:42:11 +08:00
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2020-11-15 21:17:37 +08:00
|
|
|
|
file_service_node_proto_msgTypes[47].Exporter = func(v interface{}, i int) interface{} {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
switch v := v.(*FindEnabledNodeDNSRequest); i {
|
2020-11-30 20:01:27 +08:00
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
file_service_node_proto_msgTypes[48].Exporter = func(v interface{}, i int) interface{} {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
switch v := v.(*FindEnabledNodeDNSResponse); i {
|
2020-12-10 15:03:08 +08:00
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
file_service_node_proto_msgTypes[49].Exporter = func(v interface{}, i int) interface{} {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
switch v := v.(*UpdateNodeDNSRequest); i {
|
2021-01-31 11:05:41 +08:00
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
file_service_node_proto_msgTypes[50].Exporter = func(v interface{}, i int) interface{} {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
switch v := v.(*CountAllEnabledNodesWithNodeRegionIdRequest); i {
|
2021-01-31 11:05:41 +08:00
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
file_service_node_proto_msgTypes[51].Exporter = func(v interface{}, i int) interface{} {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
switch v := v.(*FindEnabledNodesWithIdsRequest); i {
|
2021-01-31 16:01:15 +08:00
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
file_service_node_proto_msgTypes[52].Exporter = func(v interface{}, i int) interface{} {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
switch v := v.(*FindEnabledNodesWithIdsResponse); i {
|
2021-02-24 19:27:07 +08:00
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
file_service_node_proto_msgTypes[53].Exporter = func(v interface{}, i int) interface{} {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
switch v := v.(*CheckNodeLatestVersionRequest); i {
|
2021-06-10 19:19:30 +08:00
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
file_service_node_proto_msgTypes[54].Exporter = func(v interface{}, i int) interface{} {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
switch v := v.(*CheckNodeLatestVersionResponse); i {
|
2021-06-10 19:19:30 +08:00
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
file_service_node_proto_msgTypes[55].Exporter = func(v interface{}, i int) interface{} {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
switch v := v.(*UpdateNodeUpRequest); i {
|
2021-07-31 22:23:16 +08:00
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
file_service_node_proto_msgTypes[56].Exporter = func(v interface{}, i int) interface{} {
|
2021-08-31 17:24:41 +08:00
|
|
|
|
switch v := v.(*DownloadNodeInstallationFileRequest); i {
|
|
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
file_service_node_proto_msgTypes[57].Exporter = func(v interface{}, i int) interface{} {
|
|
|
|
|
|
switch v := v.(*DownloadNodeInstallationFileResponse); i {
|
|
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
file_service_node_proto_msgTypes[58].Exporter = func(v interface{}, i int) interface{} {
|
2021-09-13 16:47:46 +08:00
|
|
|
|
switch v := v.(*UpdateNodeSystemRequest); i {
|
|
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
file_service_node_proto_msgTypes[59].Exporter = func(v interface{}, i int) interface{} {
|
|
|
|
|
|
switch v := v.(*UpdateNodeCacheRequest); i {
|
|
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
file_service_node_proto_msgTypes[60].Exporter = func(v interface{}, i int) interface{} {
|
2022-04-04 16:42:11 +08:00
|
|
|
|
switch v := v.(*FindNodeLevelInfoRequest); i {
|
|
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
file_service_node_proto_msgTypes[61].Exporter = func(v interface{}, i int) interface{} {
|
|
|
|
|
|
switch v := v.(*FindNodeLevelInfoResponse); i {
|
|
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
file_service_node_proto_msgTypes[62].Exporter = func(v interface{}, i int) interface{} {
|
2022-05-04 16:40:43 +08:00
|
|
|
|
switch v := v.(*FindNodeDNSResolverRequest); i {
|
|
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
file_service_node_proto_msgTypes[63].Exporter = func(v interface{}, i int) interface{} {
|
|
|
|
|
|
switch v := v.(*FindNodeDNSResolverResponse); i {
|
|
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
file_service_node_proto_msgTypes[64].Exporter = func(v interface{}, i int) interface{} {
|
|
|
|
|
|
switch v := v.(*UpdateNodeDNSResolverRequest); i {
|
|
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
file_service_node_proto_msgTypes[65].Exporter = func(v interface{}, i int) interface{} {
|
2022-05-18 21:02:58 +08:00
|
|
|
|
switch v := v.(*FindNodeDDoSProtectionRequest); i {
|
|
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
file_service_node_proto_msgTypes[66].Exporter = func(v interface{}, i int) interface{} {
|
|
|
|
|
|
switch v := v.(*FindNodeDDoSProtectionResponse); i {
|
|
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
file_service_node_proto_msgTypes[67].Exporter = func(v interface{}, i int) interface{} {
|
|
|
|
|
|
switch v := v.(*UpdateNodeDDoSProtectionRequest); i {
|
|
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
file_service_node_proto_msgTypes[68].Exporter = func(v interface{}, i int) interface{} {
|
2022-09-16 19:34:24 +08:00
|
|
|
|
switch v := v.(*FindNodeGlobalServerConfigRequest); i {
|
2022-05-18 21:02:58 +08:00
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
file_service_node_proto_msgTypes[69].Exporter = func(v interface{}, i int) interface{} {
|
2022-09-16 19:34:24 +08:00
|
|
|
|
switch v := v.(*FindNodeGlobalServerConfigResponse); i {
|
2022-05-18 21:02:58 +08:00
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
file_service_node_proto_msgTypes[70].Exporter = func(v interface{}, i int) interface{} {
|
2022-09-16 19:34:24 +08:00
|
|
|
|
switch v := v.(*FindEnabledNodeConfigInfoRequest); i {
|
2022-09-16 18:41:10 +08:00
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
file_service_node_proto_msgTypes[71].Exporter = func(v interface{}, i int) interface{} {
|
2022-09-16 19:34:24 +08:00
|
|
|
|
switch v := v.(*FindEnabledNodeConfigInfoResponse); i {
|
2022-09-16 18:41:10 +08:00
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
file_service_node_proto_msgTypes[72].Exporter = func(v interface{}, i int) interface{} {
|
2022-10-20 15:14:22 +08:00
|
|
|
|
switch v := v.(*CountAllNodeRegionInfoRequest); i {
|
|
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
file_service_node_proto_msgTypes[73].Exporter = func(v interface{}, i int) interface{} {
|
|
|
|
|
|
switch v := v.(*ListNodeRegionInfoRequest); i {
|
|
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
file_service_node_proto_msgTypes[74].Exporter = func(v interface{}, i int) interface{} {
|
|
|
|
|
|
switch v := v.(*ListNodeRegionInfoResponse); i {
|
|
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
file_service_node_proto_msgTypes[75].Exporter = func(v interface{}, i int) interface{} {
|
|
|
|
|
|
switch v := v.(*UpdateNodeRegionInfoRequest); i {
|
|
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
file_service_node_proto_msgTypes[76].Exporter = func(v interface{}, i int) interface{} {
|
2022-11-21 19:55:09 +08:00
|
|
|
|
switch v := v.(*FindNodeAPIConfigRequest); i {
|
2020-10-28 12:36:11 +08:00
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2022-10-20 15:14:22 +08:00
|
|
|
|
file_service_node_proto_msgTypes[77].Exporter = func(v interface{}, i int) interface{} {
|
2022-11-21 19:55:09 +08:00
|
|
|
|
switch v := v.(*FindNodeAPIConfigResponse); i {
|
|
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
file_service_node_proto_msgTypes[78].Exporter = func(v interface{}, i int) interface{} {
|
|
|
|
|
|
switch v := v.(*UpdateNodeAPIConfigRequest); i {
|
|
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
file_service_node_proto_msgTypes[79].Exporter = func(v interface{}, i int) interface{} {
|
2023-04-03 15:59:45 +08:00
|
|
|
|
switch v := v.(*FindNodeUAMPoliciesRequest); i {
|
2022-11-21 19:55:09 +08:00
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
file_service_node_proto_msgTypes[80].Exporter = func(v interface{}, i int) interface{} {
|
2023-04-03 15:59:45 +08:00
|
|
|
|
switch v := v.(*FindNodeUAMPoliciesResponse); i {
|
|
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
file_service_node_proto_msgTypes[81].Exporter = func(v interface{}, i int) interface{} {
|
2023-05-23 19:16:09 +08:00
|
|
|
|
switch v := v.(*FindNodeHTTPCCPoliciesRequest); i {
|
2023-04-03 15:59:45 +08:00
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
file_service_node_proto_msgTypes[82].Exporter = func(v interface{}, i int) interface{} {
|
2023-05-23 19:16:09 +08:00
|
|
|
|
switch v := v.(*FindNodeHTTPCCPoliciesResponse); i {
|
2022-10-20 15:14:22 +08:00
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2023-04-03 15:59:45 +08:00
|
|
|
|
file_service_node_proto_msgTypes[83].Exporter = func(v interface{}, i int) interface{} {
|
2023-06-01 17:48:01 +08:00
|
|
|
|
switch v := v.(*FindNodeHTTP3PoliciesRequest); i {
|
2023-05-17 18:42:35 +08:00
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
file_service_node_proto_msgTypes[84].Exporter = func(v interface{}, i int) interface{} {
|
2023-06-01 17:48:01 +08:00
|
|
|
|
switch v := v.(*FindNodeHTTP3PoliciesResponse); i {
|
2023-05-17 18:42:35 +08:00
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
file_service_node_proto_msgTypes[85].Exporter = func(v interface{}, i int) interface{} {
|
2023-06-01 17:48:01 +08:00
|
|
|
|
switch v := v.(*FindNodeHTTPPagesPoliciesRequest); i {
|
2023-05-17 18:42:35 +08:00
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
file_service_node_proto_msgTypes[86].Exporter = func(v interface{}, i int) interface{} {
|
2023-06-01 17:48:01 +08:00
|
|
|
|
switch v := v.(*FindNodeHTTPPagesPoliciesResponse); i {
|
2023-05-17 18:42:35 +08:00
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
file_service_node_proto_msgTypes[87].Exporter = func(v interface{}, i int) interface{} {
|
2023-06-01 17:48:01 +08:00
|
|
|
|
switch v := v.(*FindNodeScheduleInfoRequest); i {
|
2023-04-03 15:59:45 +08:00
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2023-05-17 18:42:35 +08:00
|
|
|
|
file_service_node_proto_msgTypes[88].Exporter = func(v interface{}, i int) interface{} {
|
2023-06-01 17:48:01 +08:00
|
|
|
|
switch v := v.(*FindNodeScheduleInfoResponse); i {
|
2023-05-19 11:12:09 +08:00
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
file_service_node_proto_msgTypes[89].Exporter = func(v interface{}, i int) interface{} {
|
2023-06-01 17:48:01 +08:00
|
|
|
|
switch v := v.(*UpdateNodeScheduleInfoRequest); i {
|
2023-05-19 11:12:09 +08:00
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
file_service_node_proto_msgTypes[90].Exporter = func(v interface{}, i int) interface{} {
|
2023-06-01 17:48:01 +08:00
|
|
|
|
switch v := v.(*ResetNodeActionStatusRequest); i {
|
2023-05-19 11:12:09 +08:00
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
file_service_node_proto_msgTypes[91].Exporter = func(v interface{}, i int) interface{} {
|
2023-06-01 17:48:01 +08:00
|
|
|
|
switch v := v.(*FindAllNodeScheduleInfoWithNodeClusterIdRequest); i {
|
2023-05-19 11:12:09 +08:00
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
file_service_node_proto_msgTypes[92].Exporter = func(v interface{}, i int) interface{} {
|
2023-06-01 17:48:01 +08:00
|
|
|
|
switch v := v.(*FindAllNodeScheduleInfoWithNodeClusterIdResponse); i {
|
2023-05-17 18:42:35 +08:00
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2023-05-19 11:12:09 +08:00
|
|
|
|
file_service_node_proto_msgTypes[93].Exporter = func(v interface{}, i int) interface{} {
|
2023-06-01 17:48:01 +08:00
|
|
|
|
switch v := v.(*CopyNodeActionsToNodeGroupRequest); i {
|
2023-05-22 17:30:08 +08:00
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
file_service_node_proto_msgTypes[94].Exporter = func(v interface{}, i int) interface{} {
|
2023-06-01 17:48:01 +08:00
|
|
|
|
switch v := v.(*CopyNodeActionsToNodeClusterRequest); i {
|
2023-05-22 17:30:08 +08:00
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
file_service_node_proto_msgTypes[95].Exporter = func(v interface{}, i int) interface{} {
|
2023-07-24 09:56:49 +08:00
|
|
|
|
switch v := v.(*FindNodeTOAConfigRequest); i {
|
2023-05-22 17:30:08 +08:00
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
file_service_node_proto_msgTypes[96].Exporter = func(v interface{}, i int) interface{} {
|
2023-07-24 09:56:49 +08:00
|
|
|
|
switch v := v.(*FindNodeTOAConfigResponse); i {
|
2023-05-23 19:16:09 +08:00
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
file_service_node_proto_msgTypes[97].Exporter = func(v interface{}, i int) interface{} {
|
2023-07-24 09:56:49 +08:00
|
|
|
|
switch v := v.(*FindAllUpgradeNodesWithNodeClusterIdResponse_NodeUpgrade); i {
|
2023-05-23 19:16:09 +08:00
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
file_service_node_proto_msgTypes[98].Exporter = func(v interface{}, i int) interface{} {
|
2023-07-24 09:56:49 +08:00
|
|
|
|
switch v := v.(*ListNodeRegionInfoResponse_Info); i {
|
2023-05-23 19:16:09 +08:00
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
file_service_node_proto_msgTypes[99].Exporter = func(v interface{}, i int) interface{} {
|
2023-07-24 09:56:49 +08:00
|
|
|
|
switch v := v.(*FindNodeUAMPoliciesResponse_UAMPolicy); i {
|
2023-06-01 17:48:01 +08:00
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
file_service_node_proto_msgTypes[100].Exporter = func(v interface{}, i int) interface{} {
|
2023-07-24 09:56:49 +08:00
|
|
|
|
switch v := v.(*FindNodeHTTPCCPoliciesResponse_HTTPCCPolicy); i {
|
2023-06-01 17:48:01 +08:00
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
file_service_node_proto_msgTypes[101].Exporter = func(v interface{}, i int) interface{} {
|
2023-07-24 09:56:49 +08:00
|
|
|
|
switch v := v.(*FindNodeHTTP3PoliciesResponse_HTTP3Policy); i {
|
2023-06-01 17:48:01 +08:00
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
file_service_node_proto_msgTypes[102].Exporter = func(v interface{}, i int) interface{} {
|
2023-07-24 09:56:49 +08:00
|
|
|
|
switch v := v.(*FindNodeHTTPPagesPoliciesResponse_HTTPPagesPolicy); i {
|
|
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
file_service_node_proto_msgTypes[103].Exporter = func(v interface{}, i int) interface{} {
|
|
|
|
|
|
switch v := v.(*FindNodeScheduleInfoResponse_ScheduleInfo); i {
|
|
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
file_service_node_proto_msgTypes[104].Exporter = func(v interface{}, i int) interface{} {
|
2023-05-19 11:12:09 +08:00
|
|
|
|
switch v := v.(*FindAllNodeScheduleInfoWithNodeClusterIdResponse_ScheduleInfo); i {
|
|
|
|
|
|
case 0:
|
|
|
|
|
|
return &v.state
|
|
|
|
|
|
case 1:
|
|
|
|
|
|
return &v.sizeCache
|
|
|
|
|
|
case 2:
|
|
|
|
|
|
return &v.unknownFields
|
|
|
|
|
|
default:
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2020-09-13 19:27:47 +08:00
|
|
|
|
}
|
|
|
|
|
|
type x struct{}
|
|
|
|
|
|
out := protoimpl.TypeBuilder{
|
|
|
|
|
|
File: protoimpl.DescBuilder{
|
|
|
|
|
|
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
|
|
|
|
RawDescriptor: file_service_node_proto_rawDesc,
|
|
|
|
|
|
NumEnums: 0,
|
2023-07-24 09:56:49 +08:00
|
|
|
|
NumMessages: 105,
|
2020-09-13 19:27:47 +08:00
|
|
|
|
NumExtensions: 0,
|
|
|
|
|
|
NumServices: 1,
|
|
|
|
|
|
},
|
|
|
|
|
|
GoTypes: file_service_node_proto_goTypes,
|
|
|
|
|
|
DependencyIndexes: file_service_node_proto_depIdxs,
|
|
|
|
|
|
MessageInfos: file_service_node_proto_msgTypes,
|
|
|
|
|
|
}.Build()
|
|
|
|
|
|
File_service_node_proto = out.File
|
|
|
|
|
|
file_service_node_proto_rawDesc = nil
|
|
|
|
|
|
file_service_node_proto_goTypes = nil
|
|
|
|
|
|
file_service_node_proto_depIdxs = nil
|
|
|
|
|
|
}
|