forked from TrueCloudLab/frostfs-node
[#1048] control: Recompile proto files
Signed-off-by: Pavel Karpy <carpawell@nspcc.ru>
This commit is contained in:
parent
20f11c88ca
commit
a42b3d37f6
3 changed files with 625 additions and 129 deletions
480
pkg/services/control/service.pb.go
generated
480
pkg/services/control/service.pb.go
generated
|
@ -484,6 +484,122 @@ func (x *DropObjectsResponse) GetSignature() *Signature {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Request to list all shards of the node.
|
||||||
|
type ListShardsRequest struct {
|
||||||
|
state protoimpl.MessageState
|
||||||
|
sizeCache protoimpl.SizeCache
|
||||||
|
unknownFields protoimpl.UnknownFields
|
||||||
|
|
||||||
|
// Body of the request message.
|
||||||
|
Body *ListShardsRequest_Body `protobuf:"bytes,1,opt,name=body,proto3" json:"body,omitempty"`
|
||||||
|
// Body signature.
|
||||||
|
Signature *Signature `protobuf:"bytes,2,opt,name=signature,proto3" json:"signature,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *ListShardsRequest) Reset() {
|
||||||
|
*x = ListShardsRequest{}
|
||||||
|
if protoimpl.UnsafeEnabled {
|
||||||
|
mi := &file_pkg_services_control_service_proto_msgTypes[8]
|
||||||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
|
ms.StoreMessageInfo(mi)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *ListShardsRequest) String() string {
|
||||||
|
return protoimpl.X.MessageStringOf(x)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (*ListShardsRequest) ProtoMessage() {}
|
||||||
|
|
||||||
|
func (x *ListShardsRequest) ProtoReflect() protoreflect.Message {
|
||||||
|
mi := &file_pkg_services_control_service_proto_msgTypes[8]
|
||||||
|
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 ListShardsRequest.ProtoReflect.Descriptor instead.
|
||||||
|
func (*ListShardsRequest) Descriptor() ([]byte, []int) {
|
||||||
|
return file_pkg_services_control_service_proto_rawDescGZIP(), []int{8}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *ListShardsRequest) GetBody() *ListShardsRequest_Body {
|
||||||
|
if x != nil {
|
||||||
|
return x.Body
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *ListShardsRequest) GetSignature() *Signature {
|
||||||
|
if x != nil {
|
||||||
|
return x.Signature
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// ListShards response.
|
||||||
|
type ListShardsResponse struct {
|
||||||
|
state protoimpl.MessageState
|
||||||
|
sizeCache protoimpl.SizeCache
|
||||||
|
unknownFields protoimpl.UnknownFields
|
||||||
|
|
||||||
|
// Body of the response message.
|
||||||
|
Body *ListShardsResponse_Body `protobuf:"bytes,1,opt,name=body,proto3" json:"body,omitempty"`
|
||||||
|
// Body signature.
|
||||||
|
Signature *Signature `protobuf:"bytes,2,opt,name=signature,proto3" json:"signature,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *ListShardsResponse) Reset() {
|
||||||
|
*x = ListShardsResponse{}
|
||||||
|
if protoimpl.UnsafeEnabled {
|
||||||
|
mi := &file_pkg_services_control_service_proto_msgTypes[9]
|
||||||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
|
ms.StoreMessageInfo(mi)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *ListShardsResponse) String() string {
|
||||||
|
return protoimpl.X.MessageStringOf(x)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (*ListShardsResponse) ProtoMessage() {}
|
||||||
|
|
||||||
|
func (x *ListShardsResponse) ProtoReflect() protoreflect.Message {
|
||||||
|
mi := &file_pkg_services_control_service_proto_msgTypes[9]
|
||||||
|
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 ListShardsResponse.ProtoReflect.Descriptor instead.
|
||||||
|
func (*ListShardsResponse) Descriptor() ([]byte, []int) {
|
||||||
|
return file_pkg_services_control_service_proto_rawDescGZIP(), []int{9}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *ListShardsResponse) GetBody() *ListShardsResponse_Body {
|
||||||
|
if x != nil {
|
||||||
|
return x.Body
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *ListShardsResponse) GetSignature() *Signature {
|
||||||
|
if x != nil {
|
||||||
|
return x.Signature
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
// Health check request body.
|
// Health check request body.
|
||||||
type HealthCheckRequest_Body struct {
|
type HealthCheckRequest_Body struct {
|
||||||
state protoimpl.MessageState
|
state protoimpl.MessageState
|
||||||
|
@ -494,7 +610,7 @@ type HealthCheckRequest_Body struct {
|
||||||
func (x *HealthCheckRequest_Body) Reset() {
|
func (x *HealthCheckRequest_Body) Reset() {
|
||||||
*x = HealthCheckRequest_Body{}
|
*x = HealthCheckRequest_Body{}
|
||||||
if protoimpl.UnsafeEnabled {
|
if protoimpl.UnsafeEnabled {
|
||||||
mi := &file_pkg_services_control_service_proto_msgTypes[8]
|
mi := &file_pkg_services_control_service_proto_msgTypes[10]
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
ms.StoreMessageInfo(mi)
|
ms.StoreMessageInfo(mi)
|
||||||
}
|
}
|
||||||
|
@ -507,7 +623,7 @@ func (x *HealthCheckRequest_Body) String() string {
|
||||||
func (*HealthCheckRequest_Body) ProtoMessage() {}
|
func (*HealthCheckRequest_Body) ProtoMessage() {}
|
||||||
|
|
||||||
func (x *HealthCheckRequest_Body) ProtoReflect() protoreflect.Message {
|
func (x *HealthCheckRequest_Body) ProtoReflect() protoreflect.Message {
|
||||||
mi := &file_pkg_services_control_service_proto_msgTypes[8]
|
mi := &file_pkg_services_control_service_proto_msgTypes[10]
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
if protoimpl.UnsafeEnabled && x != nil {
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
if ms.LoadMessageInfo() == nil {
|
if ms.LoadMessageInfo() == nil {
|
||||||
|
@ -538,7 +654,7 @@ type HealthCheckResponse_Body struct {
|
||||||
func (x *HealthCheckResponse_Body) Reset() {
|
func (x *HealthCheckResponse_Body) Reset() {
|
||||||
*x = HealthCheckResponse_Body{}
|
*x = HealthCheckResponse_Body{}
|
||||||
if protoimpl.UnsafeEnabled {
|
if protoimpl.UnsafeEnabled {
|
||||||
mi := &file_pkg_services_control_service_proto_msgTypes[9]
|
mi := &file_pkg_services_control_service_proto_msgTypes[11]
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
ms.StoreMessageInfo(mi)
|
ms.StoreMessageInfo(mi)
|
||||||
}
|
}
|
||||||
|
@ -551,7 +667,7 @@ func (x *HealthCheckResponse_Body) String() string {
|
||||||
func (*HealthCheckResponse_Body) ProtoMessage() {}
|
func (*HealthCheckResponse_Body) ProtoMessage() {}
|
||||||
|
|
||||||
func (x *HealthCheckResponse_Body) ProtoReflect() protoreflect.Message {
|
func (x *HealthCheckResponse_Body) ProtoReflect() protoreflect.Message {
|
||||||
mi := &file_pkg_services_control_service_proto_msgTypes[9]
|
mi := &file_pkg_services_control_service_proto_msgTypes[11]
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
if protoimpl.UnsafeEnabled && x != nil {
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
if ms.LoadMessageInfo() == nil {
|
if ms.LoadMessageInfo() == nil {
|
||||||
|
@ -591,7 +707,7 @@ type NetmapSnapshotRequest_Body struct {
|
||||||
func (x *NetmapSnapshotRequest_Body) Reset() {
|
func (x *NetmapSnapshotRequest_Body) Reset() {
|
||||||
*x = NetmapSnapshotRequest_Body{}
|
*x = NetmapSnapshotRequest_Body{}
|
||||||
if protoimpl.UnsafeEnabled {
|
if protoimpl.UnsafeEnabled {
|
||||||
mi := &file_pkg_services_control_service_proto_msgTypes[10]
|
mi := &file_pkg_services_control_service_proto_msgTypes[12]
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
ms.StoreMessageInfo(mi)
|
ms.StoreMessageInfo(mi)
|
||||||
}
|
}
|
||||||
|
@ -604,7 +720,7 @@ func (x *NetmapSnapshotRequest_Body) String() string {
|
||||||
func (*NetmapSnapshotRequest_Body) ProtoMessage() {}
|
func (*NetmapSnapshotRequest_Body) ProtoMessage() {}
|
||||||
|
|
||||||
func (x *NetmapSnapshotRequest_Body) ProtoReflect() protoreflect.Message {
|
func (x *NetmapSnapshotRequest_Body) ProtoReflect() protoreflect.Message {
|
||||||
mi := &file_pkg_services_control_service_proto_msgTypes[10]
|
mi := &file_pkg_services_control_service_proto_msgTypes[12]
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
if protoimpl.UnsafeEnabled && x != nil {
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
if ms.LoadMessageInfo() == nil {
|
if ms.LoadMessageInfo() == nil {
|
||||||
|
@ -633,7 +749,7 @@ type NetmapSnapshotResponse_Body struct {
|
||||||
func (x *NetmapSnapshotResponse_Body) Reset() {
|
func (x *NetmapSnapshotResponse_Body) Reset() {
|
||||||
*x = NetmapSnapshotResponse_Body{}
|
*x = NetmapSnapshotResponse_Body{}
|
||||||
if protoimpl.UnsafeEnabled {
|
if protoimpl.UnsafeEnabled {
|
||||||
mi := &file_pkg_services_control_service_proto_msgTypes[11]
|
mi := &file_pkg_services_control_service_proto_msgTypes[13]
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
ms.StoreMessageInfo(mi)
|
ms.StoreMessageInfo(mi)
|
||||||
}
|
}
|
||||||
|
@ -646,7 +762,7 @@ func (x *NetmapSnapshotResponse_Body) String() string {
|
||||||
func (*NetmapSnapshotResponse_Body) ProtoMessage() {}
|
func (*NetmapSnapshotResponse_Body) ProtoMessage() {}
|
||||||
|
|
||||||
func (x *NetmapSnapshotResponse_Body) ProtoReflect() protoreflect.Message {
|
func (x *NetmapSnapshotResponse_Body) ProtoReflect() protoreflect.Message {
|
||||||
mi := &file_pkg_services_control_service_proto_msgTypes[11]
|
mi := &file_pkg_services_control_service_proto_msgTypes[13]
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
if protoimpl.UnsafeEnabled && x != nil {
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
if ms.LoadMessageInfo() == nil {
|
if ms.LoadMessageInfo() == nil {
|
||||||
|
@ -682,7 +798,7 @@ type SetNetmapStatusRequest_Body struct {
|
||||||
func (x *SetNetmapStatusRequest_Body) Reset() {
|
func (x *SetNetmapStatusRequest_Body) Reset() {
|
||||||
*x = SetNetmapStatusRequest_Body{}
|
*x = SetNetmapStatusRequest_Body{}
|
||||||
if protoimpl.UnsafeEnabled {
|
if protoimpl.UnsafeEnabled {
|
||||||
mi := &file_pkg_services_control_service_proto_msgTypes[12]
|
mi := &file_pkg_services_control_service_proto_msgTypes[14]
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
ms.StoreMessageInfo(mi)
|
ms.StoreMessageInfo(mi)
|
||||||
}
|
}
|
||||||
|
@ -695,7 +811,7 @@ func (x *SetNetmapStatusRequest_Body) String() string {
|
||||||
func (*SetNetmapStatusRequest_Body) ProtoMessage() {}
|
func (*SetNetmapStatusRequest_Body) ProtoMessage() {}
|
||||||
|
|
||||||
func (x *SetNetmapStatusRequest_Body) ProtoReflect() protoreflect.Message {
|
func (x *SetNetmapStatusRequest_Body) ProtoReflect() protoreflect.Message {
|
||||||
mi := &file_pkg_services_control_service_proto_msgTypes[12]
|
mi := &file_pkg_services_control_service_proto_msgTypes[14]
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
if protoimpl.UnsafeEnabled && x != nil {
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
if ms.LoadMessageInfo() == nil {
|
if ms.LoadMessageInfo() == nil {
|
||||||
|
@ -728,7 +844,7 @@ type SetNetmapStatusResponse_Body struct {
|
||||||
func (x *SetNetmapStatusResponse_Body) Reset() {
|
func (x *SetNetmapStatusResponse_Body) Reset() {
|
||||||
*x = SetNetmapStatusResponse_Body{}
|
*x = SetNetmapStatusResponse_Body{}
|
||||||
if protoimpl.UnsafeEnabled {
|
if protoimpl.UnsafeEnabled {
|
||||||
mi := &file_pkg_services_control_service_proto_msgTypes[13]
|
mi := &file_pkg_services_control_service_proto_msgTypes[15]
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
ms.StoreMessageInfo(mi)
|
ms.StoreMessageInfo(mi)
|
||||||
}
|
}
|
||||||
|
@ -741,7 +857,7 @@ func (x *SetNetmapStatusResponse_Body) String() string {
|
||||||
func (*SetNetmapStatusResponse_Body) ProtoMessage() {}
|
func (*SetNetmapStatusResponse_Body) ProtoMessage() {}
|
||||||
|
|
||||||
func (x *SetNetmapStatusResponse_Body) ProtoReflect() protoreflect.Message {
|
func (x *SetNetmapStatusResponse_Body) ProtoReflect() protoreflect.Message {
|
||||||
mi := &file_pkg_services_control_service_proto_msgTypes[13]
|
mi := &file_pkg_services_control_service_proto_msgTypes[15]
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
if protoimpl.UnsafeEnabled && x != nil {
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
if ms.LoadMessageInfo() == nil {
|
if ms.LoadMessageInfo() == nil {
|
||||||
|
@ -771,7 +887,7 @@ type DropObjectsRequest_Body struct {
|
||||||
func (x *DropObjectsRequest_Body) Reset() {
|
func (x *DropObjectsRequest_Body) Reset() {
|
||||||
*x = DropObjectsRequest_Body{}
|
*x = DropObjectsRequest_Body{}
|
||||||
if protoimpl.UnsafeEnabled {
|
if protoimpl.UnsafeEnabled {
|
||||||
mi := &file_pkg_services_control_service_proto_msgTypes[14]
|
mi := &file_pkg_services_control_service_proto_msgTypes[16]
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
ms.StoreMessageInfo(mi)
|
ms.StoreMessageInfo(mi)
|
||||||
}
|
}
|
||||||
|
@ -784,7 +900,7 @@ func (x *DropObjectsRequest_Body) String() string {
|
||||||
func (*DropObjectsRequest_Body) ProtoMessage() {}
|
func (*DropObjectsRequest_Body) ProtoMessage() {}
|
||||||
|
|
||||||
func (x *DropObjectsRequest_Body) ProtoReflect() protoreflect.Message {
|
func (x *DropObjectsRequest_Body) ProtoReflect() protoreflect.Message {
|
||||||
mi := &file_pkg_services_control_service_proto_msgTypes[14]
|
mi := &file_pkg_services_control_service_proto_msgTypes[16]
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
if protoimpl.UnsafeEnabled && x != nil {
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
if ms.LoadMessageInfo() == nil {
|
if ms.LoadMessageInfo() == nil {
|
||||||
|
@ -817,7 +933,7 @@ type DropObjectsResponse_Body struct {
|
||||||
func (x *DropObjectsResponse_Body) Reset() {
|
func (x *DropObjectsResponse_Body) Reset() {
|
||||||
*x = DropObjectsResponse_Body{}
|
*x = DropObjectsResponse_Body{}
|
||||||
if protoimpl.UnsafeEnabled {
|
if protoimpl.UnsafeEnabled {
|
||||||
mi := &file_pkg_services_control_service_proto_msgTypes[15]
|
mi := &file_pkg_services_control_service_proto_msgTypes[17]
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
ms.StoreMessageInfo(mi)
|
ms.StoreMessageInfo(mi)
|
||||||
}
|
}
|
||||||
|
@ -830,7 +946,7 @@ func (x *DropObjectsResponse_Body) String() string {
|
||||||
func (*DropObjectsResponse_Body) ProtoMessage() {}
|
func (*DropObjectsResponse_Body) ProtoMessage() {}
|
||||||
|
|
||||||
func (x *DropObjectsResponse_Body) ProtoReflect() protoreflect.Message {
|
func (x *DropObjectsResponse_Body) ProtoReflect() protoreflect.Message {
|
||||||
mi := &file_pkg_services_control_service_proto_msgTypes[15]
|
mi := &file_pkg_services_control_service_proto_msgTypes[17]
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
if protoimpl.UnsafeEnabled && x != nil {
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
if ms.LoadMessageInfo() == nil {
|
if ms.LoadMessageInfo() == nil {
|
||||||
|
@ -846,6 +962,94 @@ func (*DropObjectsResponse_Body) Descriptor() ([]byte, []int) {
|
||||||
return file_pkg_services_control_service_proto_rawDescGZIP(), []int{7, 0}
|
return file_pkg_services_control_service_proto_rawDescGZIP(), []int{7, 0}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Request body structure.
|
||||||
|
type ListShardsRequest_Body struct {
|
||||||
|
state protoimpl.MessageState
|
||||||
|
sizeCache protoimpl.SizeCache
|
||||||
|
unknownFields protoimpl.UnknownFields
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *ListShardsRequest_Body) Reset() {
|
||||||
|
*x = ListShardsRequest_Body{}
|
||||||
|
if protoimpl.UnsafeEnabled {
|
||||||
|
mi := &file_pkg_services_control_service_proto_msgTypes[18]
|
||||||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
|
ms.StoreMessageInfo(mi)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *ListShardsRequest_Body) String() string {
|
||||||
|
return protoimpl.X.MessageStringOf(x)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (*ListShardsRequest_Body) ProtoMessage() {}
|
||||||
|
|
||||||
|
func (x *ListShardsRequest_Body) ProtoReflect() protoreflect.Message {
|
||||||
|
mi := &file_pkg_services_control_service_proto_msgTypes[18]
|
||||||
|
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 ListShardsRequest_Body.ProtoReflect.Descriptor instead.
|
||||||
|
func (*ListShardsRequest_Body) Descriptor() ([]byte, []int) {
|
||||||
|
return file_pkg_services_control_service_proto_rawDescGZIP(), []int{8, 0}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Response body structure.
|
||||||
|
type ListShardsResponse_Body struct {
|
||||||
|
state protoimpl.MessageState
|
||||||
|
sizeCache protoimpl.SizeCache
|
||||||
|
unknownFields protoimpl.UnknownFields
|
||||||
|
|
||||||
|
// List of the node's shards.
|
||||||
|
Shards []*ShardInfo `protobuf:"bytes,1,rep,name=shards,proto3" json:"shards,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *ListShardsResponse_Body) Reset() {
|
||||||
|
*x = ListShardsResponse_Body{}
|
||||||
|
if protoimpl.UnsafeEnabled {
|
||||||
|
mi := &file_pkg_services_control_service_proto_msgTypes[19]
|
||||||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
|
ms.StoreMessageInfo(mi)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *ListShardsResponse_Body) String() string {
|
||||||
|
return protoimpl.X.MessageStringOf(x)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (*ListShardsResponse_Body) ProtoMessage() {}
|
||||||
|
|
||||||
|
func (x *ListShardsResponse_Body) ProtoReflect() protoreflect.Message {
|
||||||
|
mi := &file_pkg_services_control_service_proto_msgTypes[19]
|
||||||
|
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 ListShardsResponse_Body.ProtoReflect.Descriptor instead.
|
||||||
|
func (*ListShardsResponse_Body) Descriptor() ([]byte, []int) {
|
||||||
|
return file_pkg_services_control_service_proto_rawDescGZIP(), []int{9, 0}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *ListShardsResponse_Body) GetShards() []*ShardInfo {
|
||||||
|
if x != nil {
|
||||||
|
return x.Shards
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
var File_pkg_services_control_service_proto protoreflect.FileDescriptor
|
var File_pkg_services_control_service_proto protoreflect.FileDescriptor
|
||||||
|
|
||||||
var file_pkg_services_control_service_proto_rawDesc = []byte{
|
var file_pkg_services_control_service_proto_rawDesc = []byte{
|
||||||
|
@ -938,32 +1142,56 @@ var file_pkg_services_control_service_proto_rawDesc = []byte{
|
||||||
0x62, 0x6f, 0x64, 0x79, 0x12, 0x30, 0x0a, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72,
|
0x62, 0x6f, 0x64, 0x79, 0x12, 0x30, 0x0a, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72,
|
||||||
0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x63, 0x6f, 0x6e, 0x74, 0x72, 0x6f,
|
0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x63, 0x6f, 0x6e, 0x74, 0x72, 0x6f,
|
||||||
0x6c, 0x2e, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x52, 0x09, 0x73, 0x69, 0x67,
|
0x6c, 0x2e, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x52, 0x09, 0x73, 0x69, 0x67,
|
||||||
0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x1a, 0x06, 0x0a, 0x04, 0x42, 0x6f, 0x64, 0x79, 0x32, 0xcd,
|
0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x1a, 0x06, 0x0a, 0x04, 0x42, 0x6f, 0x64, 0x79, 0x22, 0x82,
|
||||||
0x02, 0x0a, 0x0e, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63,
|
0x01, 0x0a, 0x11, 0x4c, 0x69, 0x73, 0x74, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x52, 0x65, 0x71,
|
||||||
0x65, 0x12, 0x48, 0x0a, 0x0b, 0x48, 0x65, 0x61, 0x6c, 0x74, 0x68, 0x43, 0x68, 0x65, 0x63, 0x6b,
|
0x75, 0x65, 0x73, 0x74, 0x12, 0x33, 0x0a, 0x04, 0x62, 0x6f, 0x64, 0x79, 0x18, 0x01, 0x20, 0x01,
|
||||||
0x12, 0x1b, 0x2e, 0x63, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x2e, 0x48, 0x65, 0x61, 0x6c, 0x74,
|
0x28, 0x0b, 0x32, 0x1f, 0x2e, 0x63, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x2e, 0x4c, 0x69, 0x73,
|
||||||
0x68, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1c, 0x2e,
|
0x74, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x42,
|
||||||
0x63, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x2e, 0x48, 0x65, 0x61, 0x6c, 0x74, 0x68, 0x43, 0x68,
|
0x6f, 0x64, 0x79, 0x52, 0x04, 0x62, 0x6f, 0x64, 0x79, 0x12, 0x30, 0x0a, 0x09, 0x73, 0x69, 0x67,
|
||||||
0x65, 0x63, 0x6b, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x51, 0x0a, 0x0e, 0x4e,
|
0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x63,
|
||||||
0x65, 0x74, 0x6d, 0x61, 0x70, 0x53, 0x6e, 0x61, 0x70, 0x73, 0x68, 0x6f, 0x74, 0x12, 0x1e, 0x2e,
|
0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x2e, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65,
|
||||||
0x63, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x2e, 0x4e, 0x65, 0x74, 0x6d, 0x61, 0x70, 0x53, 0x6e,
|
0x52, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x1a, 0x06, 0x0a, 0x04, 0x42,
|
||||||
0x61, 0x70, 0x73, 0x68, 0x6f, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1f, 0x2e,
|
0x6f, 0x64, 0x79, 0x22, 0xb0, 0x01, 0x0a, 0x12, 0x4c, 0x69, 0x73, 0x74, 0x53, 0x68, 0x61, 0x72,
|
||||||
0x63, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x2e, 0x4e, 0x65, 0x74, 0x6d, 0x61, 0x70, 0x53, 0x6e,
|
0x64, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x34, 0x0a, 0x04, 0x62, 0x6f,
|
||||||
0x61, 0x70, 0x73, 0x68, 0x6f, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x54,
|
0x64, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x63, 0x6f, 0x6e, 0x74, 0x72,
|
||||||
0x0a, 0x0f, 0x53, 0x65, 0x74, 0x4e, 0x65, 0x74, 0x6d, 0x61, 0x70, 0x53, 0x74, 0x61, 0x74, 0x75,
|
0x6f, 0x6c, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x52, 0x65, 0x73,
|
||||||
0x73, 0x12, 0x1f, 0x2e, 0x63, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x2e, 0x53, 0x65, 0x74, 0x4e,
|
0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x42, 0x6f, 0x64, 0x79, 0x52, 0x04, 0x62, 0x6f, 0x64, 0x79,
|
||||||
0x65, 0x74, 0x6d, 0x61, 0x70, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65,
|
0x12, 0x30, 0x0a, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x18, 0x02, 0x20,
|
||||||
0x73, 0x74, 0x1a, 0x20, 0x2e, 0x63, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x2e, 0x53, 0x65, 0x74,
|
0x01, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x63, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x2e, 0x53, 0x69,
|
||||||
0x4e, 0x65, 0x74, 0x6d, 0x61, 0x70, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70,
|
0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x52, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75,
|
||||||
0x6f, 0x6e, 0x73, 0x65, 0x12, 0x48, 0x0a, 0x0b, 0x44, 0x72, 0x6f, 0x70, 0x4f, 0x62, 0x6a, 0x65,
|
0x72, 0x65, 0x1a, 0x32, 0x0a, 0x04, 0x42, 0x6f, 0x64, 0x79, 0x12, 0x2a, 0x0a, 0x06, 0x73, 0x68,
|
||||||
0x63, 0x74, 0x73, 0x12, 0x1b, 0x2e, 0x63, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x2e, 0x44, 0x72,
|
0x61, 0x72, 0x64, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x63, 0x6f, 0x6e,
|
||||||
0x6f, 0x70, 0x4f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
|
0x74, 0x72, 0x6f, 0x6c, 0x2e, 0x53, 0x68, 0x61, 0x72, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x06,
|
||||||
0x1a, 0x1c, 0x2e, 0x63, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x2e, 0x44, 0x72, 0x6f, 0x70, 0x4f,
|
0x73, 0x68, 0x61, 0x72, 0x64, 0x73, 0x32, 0x94, 0x03, 0x0a, 0x0e, 0x43, 0x6f, 0x6e, 0x74, 0x72,
|
||||||
0x62, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x42, 0x36,
|
0x6f, 0x6c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x48, 0x0a, 0x0b, 0x48, 0x65, 0x61,
|
||||||
0x5a, 0x34, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x6e, 0x73, 0x70,
|
0x6c, 0x74, 0x68, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x12, 0x1b, 0x2e, 0x63, 0x6f, 0x6e, 0x74, 0x72,
|
||||||
0x63, 0x63, 0x2d, 0x64, 0x65, 0x76, 0x2f, 0x6e, 0x65, 0x6f, 0x66, 0x73, 0x2d, 0x6e, 0x6f, 0x64,
|
0x6f, 0x6c, 0x2e, 0x48, 0x65, 0x61, 0x6c, 0x74, 0x68, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x52, 0x65,
|
||||||
0x65, 0x2f, 0x70, 0x6b, 0x67, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x63,
|
0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1c, 0x2e, 0x63, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x2e,
|
||||||
0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
0x48, 0x65, 0x61, 0x6c, 0x74, 0x68, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x52, 0x65, 0x73, 0x70, 0x6f,
|
||||||
|
0x6e, 0x73, 0x65, 0x12, 0x51, 0x0a, 0x0e, 0x4e, 0x65, 0x74, 0x6d, 0x61, 0x70, 0x53, 0x6e, 0x61,
|
||||||
|
0x70, 0x73, 0x68, 0x6f, 0x74, 0x12, 0x1e, 0x2e, 0x63, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x2e,
|
||||||
|
0x4e, 0x65, 0x74, 0x6d, 0x61, 0x70, 0x53, 0x6e, 0x61, 0x70, 0x73, 0x68, 0x6f, 0x74, 0x52, 0x65,
|
||||||
|
0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1f, 0x2e, 0x63, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x2e,
|
||||||
|
0x4e, 0x65, 0x74, 0x6d, 0x61, 0x70, 0x53, 0x6e, 0x61, 0x70, 0x73, 0x68, 0x6f, 0x74, 0x52, 0x65,
|
||||||
|
0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x54, 0x0a, 0x0f, 0x53, 0x65, 0x74, 0x4e, 0x65, 0x74,
|
||||||
|
0x6d, 0x61, 0x70, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x1f, 0x2e, 0x63, 0x6f, 0x6e, 0x74,
|
||||||
|
0x72, 0x6f, 0x6c, 0x2e, 0x53, 0x65, 0x74, 0x4e, 0x65, 0x74, 0x6d, 0x61, 0x70, 0x53, 0x74, 0x61,
|
||||||
|
0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x20, 0x2e, 0x63, 0x6f, 0x6e,
|
||||||
|
0x74, 0x72, 0x6f, 0x6c, 0x2e, 0x53, 0x65, 0x74, 0x4e, 0x65, 0x74, 0x6d, 0x61, 0x70, 0x53, 0x74,
|
||||||
|
0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x48, 0x0a, 0x0b,
|
||||||
|
0x44, 0x72, 0x6f, 0x70, 0x4f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x12, 0x1b, 0x2e, 0x63, 0x6f,
|
||||||
|
0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x2e, 0x44, 0x72, 0x6f, 0x70, 0x4f, 0x62, 0x6a, 0x65, 0x63, 0x74,
|
||||||
|
0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1c, 0x2e, 0x63, 0x6f, 0x6e, 0x74, 0x72,
|
||||||
|
0x6f, 0x6c, 0x2e, 0x44, 0x72, 0x6f, 0x70, 0x4f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x52, 0x65,
|
||||||
|
0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x45, 0x0a, 0x0a, 0x4c, 0x69, 0x73, 0x74, 0x53, 0x68,
|
||||||
|
0x61, 0x72, 0x64, 0x73, 0x12, 0x1a, 0x2e, 0x63, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x2e, 0x4c,
|
||||||
|
0x69, 0x73, 0x74, 0x53, 0x68, 0x61, 0x72, 0x64, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
|
||||||
|
0x1a, 0x1b, 0x2e, 0x63, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x53,
|
||||||
|
0x68, 0x61, 0x72, 0x64, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x42, 0x36, 0x5a,
|
||||||
|
0x34, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x6e, 0x73, 0x70, 0x63,
|
||||||
|
0x63, 0x2d, 0x64, 0x65, 0x76, 0x2f, 0x6e, 0x65, 0x6f, 0x66, 0x73, 0x2d, 0x6e, 0x6f, 0x64, 0x65,
|
||||||
|
0x2f, 0x70, 0x6b, 0x67, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x6f,
|
||||||
|
0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
||||||
}
|
}
|
||||||
|
|
||||||
var (
|
var (
|
||||||
|
@ -978,7 +1206,7 @@ func file_pkg_services_control_service_proto_rawDescGZIP() []byte {
|
||||||
return file_pkg_services_control_service_proto_rawDescData
|
return file_pkg_services_control_service_proto_rawDescData
|
||||||
}
|
}
|
||||||
|
|
||||||
var file_pkg_services_control_service_proto_msgTypes = make([]protoimpl.MessageInfo, 16)
|
var file_pkg_services_control_service_proto_msgTypes = make([]protoimpl.MessageInfo, 20)
|
||||||
var file_pkg_services_control_service_proto_goTypes = []interface{}{
|
var file_pkg_services_control_service_proto_goTypes = []interface{}{
|
||||||
(*HealthCheckRequest)(nil), // 0: control.HealthCheckRequest
|
(*HealthCheckRequest)(nil), // 0: control.HealthCheckRequest
|
||||||
(*HealthCheckResponse)(nil), // 1: control.HealthCheckResponse
|
(*HealthCheckResponse)(nil), // 1: control.HealthCheckResponse
|
||||||
|
@ -988,53 +1216,65 @@ var file_pkg_services_control_service_proto_goTypes = []interface{}{
|
||||||
(*SetNetmapStatusResponse)(nil), // 5: control.SetNetmapStatusResponse
|
(*SetNetmapStatusResponse)(nil), // 5: control.SetNetmapStatusResponse
|
||||||
(*DropObjectsRequest)(nil), // 6: control.DropObjectsRequest
|
(*DropObjectsRequest)(nil), // 6: control.DropObjectsRequest
|
||||||
(*DropObjectsResponse)(nil), // 7: control.DropObjectsResponse
|
(*DropObjectsResponse)(nil), // 7: control.DropObjectsResponse
|
||||||
(*HealthCheckRequest_Body)(nil), // 8: control.HealthCheckRequest.Body
|
(*ListShardsRequest)(nil), // 8: control.ListShardsRequest
|
||||||
(*HealthCheckResponse_Body)(nil), // 9: control.HealthCheckResponse.Body
|
(*ListShardsResponse)(nil), // 9: control.ListShardsResponse
|
||||||
(*NetmapSnapshotRequest_Body)(nil), // 10: control.NetmapSnapshotRequest.Body
|
(*HealthCheckRequest_Body)(nil), // 10: control.HealthCheckRequest.Body
|
||||||
(*NetmapSnapshotResponse_Body)(nil), // 11: control.NetmapSnapshotResponse.Body
|
(*HealthCheckResponse_Body)(nil), // 11: control.HealthCheckResponse.Body
|
||||||
(*SetNetmapStatusRequest_Body)(nil), // 12: control.SetNetmapStatusRequest.Body
|
(*NetmapSnapshotRequest_Body)(nil), // 12: control.NetmapSnapshotRequest.Body
|
||||||
(*SetNetmapStatusResponse_Body)(nil), // 13: control.SetNetmapStatusResponse.Body
|
(*NetmapSnapshotResponse_Body)(nil), // 13: control.NetmapSnapshotResponse.Body
|
||||||
(*DropObjectsRequest_Body)(nil), // 14: control.DropObjectsRequest.Body
|
(*SetNetmapStatusRequest_Body)(nil), // 14: control.SetNetmapStatusRequest.Body
|
||||||
(*DropObjectsResponse_Body)(nil), // 15: control.DropObjectsResponse.Body
|
(*SetNetmapStatusResponse_Body)(nil), // 15: control.SetNetmapStatusResponse.Body
|
||||||
(*Signature)(nil), // 16: control.Signature
|
(*DropObjectsRequest_Body)(nil), // 16: control.DropObjectsRequest.Body
|
||||||
(NetmapStatus)(0), // 17: control.NetmapStatus
|
(*DropObjectsResponse_Body)(nil), // 17: control.DropObjectsResponse.Body
|
||||||
(HealthStatus)(0), // 18: control.HealthStatus
|
(*ListShardsRequest_Body)(nil), // 18: control.ListShardsRequest.Body
|
||||||
(*Netmap)(nil), // 19: control.Netmap
|
(*ListShardsResponse_Body)(nil), // 19: control.ListShardsResponse.Body
|
||||||
|
(*Signature)(nil), // 20: control.Signature
|
||||||
|
(NetmapStatus)(0), // 21: control.NetmapStatus
|
||||||
|
(HealthStatus)(0), // 22: control.HealthStatus
|
||||||
|
(*Netmap)(nil), // 23: control.Netmap
|
||||||
|
(*ShardInfo)(nil), // 24: control.ShardInfo
|
||||||
}
|
}
|
||||||
var file_pkg_services_control_service_proto_depIdxs = []int32{
|
var file_pkg_services_control_service_proto_depIdxs = []int32{
|
||||||
8, // 0: control.HealthCheckRequest.body:type_name -> control.HealthCheckRequest.Body
|
10, // 0: control.HealthCheckRequest.body:type_name -> control.HealthCheckRequest.Body
|
||||||
16, // 1: control.HealthCheckRequest.signature:type_name -> control.Signature
|
20, // 1: control.HealthCheckRequest.signature:type_name -> control.Signature
|
||||||
9, // 2: control.HealthCheckResponse.body:type_name -> control.HealthCheckResponse.Body
|
11, // 2: control.HealthCheckResponse.body:type_name -> control.HealthCheckResponse.Body
|
||||||
16, // 3: control.HealthCheckResponse.signature:type_name -> control.Signature
|
20, // 3: control.HealthCheckResponse.signature:type_name -> control.Signature
|
||||||
10, // 4: control.NetmapSnapshotRequest.body:type_name -> control.NetmapSnapshotRequest.Body
|
12, // 4: control.NetmapSnapshotRequest.body:type_name -> control.NetmapSnapshotRequest.Body
|
||||||
16, // 5: control.NetmapSnapshotRequest.signature:type_name -> control.Signature
|
20, // 5: control.NetmapSnapshotRequest.signature:type_name -> control.Signature
|
||||||
11, // 6: control.NetmapSnapshotResponse.body:type_name -> control.NetmapSnapshotResponse.Body
|
13, // 6: control.NetmapSnapshotResponse.body:type_name -> control.NetmapSnapshotResponse.Body
|
||||||
16, // 7: control.NetmapSnapshotResponse.signature:type_name -> control.Signature
|
20, // 7: control.NetmapSnapshotResponse.signature:type_name -> control.Signature
|
||||||
12, // 8: control.SetNetmapStatusRequest.body:type_name -> control.SetNetmapStatusRequest.Body
|
14, // 8: control.SetNetmapStatusRequest.body:type_name -> control.SetNetmapStatusRequest.Body
|
||||||
16, // 9: control.SetNetmapStatusRequest.signature:type_name -> control.Signature
|
20, // 9: control.SetNetmapStatusRequest.signature:type_name -> control.Signature
|
||||||
13, // 10: control.SetNetmapStatusResponse.body:type_name -> control.SetNetmapStatusResponse.Body
|
15, // 10: control.SetNetmapStatusResponse.body:type_name -> control.SetNetmapStatusResponse.Body
|
||||||
16, // 11: control.SetNetmapStatusResponse.signature:type_name -> control.Signature
|
20, // 11: control.SetNetmapStatusResponse.signature:type_name -> control.Signature
|
||||||
14, // 12: control.DropObjectsRequest.body:type_name -> control.DropObjectsRequest.Body
|
16, // 12: control.DropObjectsRequest.body:type_name -> control.DropObjectsRequest.Body
|
||||||
16, // 13: control.DropObjectsRequest.signature:type_name -> control.Signature
|
20, // 13: control.DropObjectsRequest.signature:type_name -> control.Signature
|
||||||
15, // 14: control.DropObjectsResponse.body:type_name -> control.DropObjectsResponse.Body
|
17, // 14: control.DropObjectsResponse.body:type_name -> control.DropObjectsResponse.Body
|
||||||
16, // 15: control.DropObjectsResponse.signature:type_name -> control.Signature
|
20, // 15: control.DropObjectsResponse.signature:type_name -> control.Signature
|
||||||
17, // 16: control.HealthCheckResponse.Body.netmap_status:type_name -> control.NetmapStatus
|
18, // 16: control.ListShardsRequest.body:type_name -> control.ListShardsRequest.Body
|
||||||
18, // 17: control.HealthCheckResponse.Body.health_status:type_name -> control.HealthStatus
|
20, // 17: control.ListShardsRequest.signature:type_name -> control.Signature
|
||||||
19, // 18: control.NetmapSnapshotResponse.Body.netmap:type_name -> control.Netmap
|
19, // 18: control.ListShardsResponse.body:type_name -> control.ListShardsResponse.Body
|
||||||
17, // 19: control.SetNetmapStatusRequest.Body.status:type_name -> control.NetmapStatus
|
20, // 19: control.ListShardsResponse.signature:type_name -> control.Signature
|
||||||
0, // 20: control.ControlService.HealthCheck:input_type -> control.HealthCheckRequest
|
21, // 20: control.HealthCheckResponse.Body.netmap_status:type_name -> control.NetmapStatus
|
||||||
2, // 21: control.ControlService.NetmapSnapshot:input_type -> control.NetmapSnapshotRequest
|
22, // 21: control.HealthCheckResponse.Body.health_status:type_name -> control.HealthStatus
|
||||||
4, // 22: control.ControlService.SetNetmapStatus:input_type -> control.SetNetmapStatusRequest
|
23, // 22: control.NetmapSnapshotResponse.Body.netmap:type_name -> control.Netmap
|
||||||
6, // 23: control.ControlService.DropObjects:input_type -> control.DropObjectsRequest
|
21, // 23: control.SetNetmapStatusRequest.Body.status:type_name -> control.NetmapStatus
|
||||||
1, // 24: control.ControlService.HealthCheck:output_type -> control.HealthCheckResponse
|
24, // 24: control.ListShardsResponse.Body.shards:type_name -> control.ShardInfo
|
||||||
3, // 25: control.ControlService.NetmapSnapshot:output_type -> control.NetmapSnapshotResponse
|
0, // 25: control.ControlService.HealthCheck:input_type -> control.HealthCheckRequest
|
||||||
5, // 26: control.ControlService.SetNetmapStatus:output_type -> control.SetNetmapStatusResponse
|
2, // 26: control.ControlService.NetmapSnapshot:input_type -> control.NetmapSnapshotRequest
|
||||||
7, // 27: control.ControlService.DropObjects:output_type -> control.DropObjectsResponse
|
4, // 27: control.ControlService.SetNetmapStatus:input_type -> control.SetNetmapStatusRequest
|
||||||
24, // [24:28] is the sub-list for method output_type
|
6, // 28: control.ControlService.DropObjects:input_type -> control.DropObjectsRequest
|
||||||
20, // [20:24] is the sub-list for method input_type
|
8, // 29: control.ControlService.ListShards:input_type -> control.ListShardsRequest
|
||||||
20, // [20:20] is the sub-list for extension type_name
|
1, // 30: control.ControlService.HealthCheck:output_type -> control.HealthCheckResponse
|
||||||
20, // [20:20] is the sub-list for extension extendee
|
3, // 31: control.ControlService.NetmapSnapshot:output_type -> control.NetmapSnapshotResponse
|
||||||
0, // [0:20] is the sub-list for field type_name
|
5, // 32: control.ControlService.SetNetmapStatus:output_type -> control.SetNetmapStatusResponse
|
||||||
|
7, // 33: control.ControlService.DropObjects:output_type -> control.DropObjectsResponse
|
||||||
|
9, // 34: control.ControlService.ListShards:output_type -> control.ListShardsResponse
|
||||||
|
30, // [30:35] is the sub-list for method output_type
|
||||||
|
25, // [25:30] is the sub-list for method input_type
|
||||||
|
25, // [25:25] is the sub-list for extension type_name
|
||||||
|
25, // [25:25] is the sub-list for extension extendee
|
||||||
|
0, // [0:25] is the sub-list for field type_name
|
||||||
}
|
}
|
||||||
|
|
||||||
func init() { file_pkg_services_control_service_proto_init() }
|
func init() { file_pkg_services_control_service_proto_init() }
|
||||||
|
@ -1141,7 +1381,7 @@ func file_pkg_services_control_service_proto_init() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
file_pkg_services_control_service_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
|
file_pkg_services_control_service_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
|
||||||
switch v := v.(*HealthCheckRequest_Body); i {
|
switch v := v.(*ListShardsRequest); i {
|
||||||
case 0:
|
case 0:
|
||||||
return &v.state
|
return &v.state
|
||||||
case 1:
|
case 1:
|
||||||
|
@ -1153,7 +1393,7 @@ func file_pkg_services_control_service_proto_init() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
file_pkg_services_control_service_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
|
file_pkg_services_control_service_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
|
||||||
switch v := v.(*HealthCheckResponse_Body); i {
|
switch v := v.(*ListShardsResponse); i {
|
||||||
case 0:
|
case 0:
|
||||||
return &v.state
|
return &v.state
|
||||||
case 1:
|
case 1:
|
||||||
|
@ -1165,7 +1405,7 @@ func file_pkg_services_control_service_proto_init() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
file_pkg_services_control_service_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
|
file_pkg_services_control_service_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
|
||||||
switch v := v.(*NetmapSnapshotRequest_Body); i {
|
switch v := v.(*HealthCheckRequest_Body); i {
|
||||||
case 0:
|
case 0:
|
||||||
return &v.state
|
return &v.state
|
||||||
case 1:
|
case 1:
|
||||||
|
@ -1177,7 +1417,7 @@ func file_pkg_services_control_service_proto_init() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
file_pkg_services_control_service_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
|
file_pkg_services_control_service_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
|
||||||
switch v := v.(*NetmapSnapshotResponse_Body); i {
|
switch v := v.(*HealthCheckResponse_Body); i {
|
||||||
case 0:
|
case 0:
|
||||||
return &v.state
|
return &v.state
|
||||||
case 1:
|
case 1:
|
||||||
|
@ -1189,7 +1429,7 @@ func file_pkg_services_control_service_proto_init() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
file_pkg_services_control_service_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
|
file_pkg_services_control_service_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
|
||||||
switch v := v.(*SetNetmapStatusRequest_Body); i {
|
switch v := v.(*NetmapSnapshotRequest_Body); i {
|
||||||
case 0:
|
case 0:
|
||||||
return &v.state
|
return &v.state
|
||||||
case 1:
|
case 1:
|
||||||
|
@ -1201,7 +1441,7 @@ func file_pkg_services_control_service_proto_init() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
file_pkg_services_control_service_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
|
file_pkg_services_control_service_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
|
||||||
switch v := v.(*SetNetmapStatusResponse_Body); i {
|
switch v := v.(*NetmapSnapshotResponse_Body); i {
|
||||||
case 0:
|
case 0:
|
||||||
return &v.state
|
return &v.state
|
||||||
case 1:
|
case 1:
|
||||||
|
@ -1213,7 +1453,7 @@ func file_pkg_services_control_service_proto_init() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
file_pkg_services_control_service_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
|
file_pkg_services_control_service_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
|
||||||
switch v := v.(*DropObjectsRequest_Body); i {
|
switch v := v.(*SetNetmapStatusRequest_Body); i {
|
||||||
case 0:
|
case 0:
|
||||||
return &v.state
|
return &v.state
|
||||||
case 1:
|
case 1:
|
||||||
|
@ -1225,6 +1465,30 @@ func file_pkg_services_control_service_proto_init() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
file_pkg_services_control_service_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
|
file_pkg_services_control_service_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
|
||||||
|
switch v := v.(*SetNetmapStatusResponse_Body); i {
|
||||||
|
case 0:
|
||||||
|
return &v.state
|
||||||
|
case 1:
|
||||||
|
return &v.sizeCache
|
||||||
|
case 2:
|
||||||
|
return &v.unknownFields
|
||||||
|
default:
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
}
|
||||||
|
file_pkg_services_control_service_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
|
||||||
|
switch v := v.(*DropObjectsRequest_Body); i {
|
||||||
|
case 0:
|
||||||
|
return &v.state
|
||||||
|
case 1:
|
||||||
|
return &v.sizeCache
|
||||||
|
case 2:
|
||||||
|
return &v.unknownFields
|
||||||
|
default:
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
}
|
||||||
|
file_pkg_services_control_service_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
|
||||||
switch v := v.(*DropObjectsResponse_Body); i {
|
switch v := v.(*DropObjectsResponse_Body); i {
|
||||||
case 0:
|
case 0:
|
||||||
return &v.state
|
return &v.state
|
||||||
|
@ -1236,6 +1500,30 @@ func file_pkg_services_control_service_proto_init() {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
file_pkg_services_control_service_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
|
||||||
|
switch v := v.(*ListShardsRequest_Body); i {
|
||||||
|
case 0:
|
||||||
|
return &v.state
|
||||||
|
case 1:
|
||||||
|
return &v.sizeCache
|
||||||
|
case 2:
|
||||||
|
return &v.unknownFields
|
||||||
|
default:
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
}
|
||||||
|
file_pkg_services_control_service_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
|
||||||
|
switch v := v.(*ListShardsResponse_Body); i {
|
||||||
|
case 0:
|
||||||
|
return &v.state
|
||||||
|
case 1:
|
||||||
|
return &v.sizeCache
|
||||||
|
case 2:
|
||||||
|
return &v.unknownFields
|
||||||
|
default:
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
type x struct{}
|
type x struct{}
|
||||||
out := protoimpl.TypeBuilder{
|
out := protoimpl.TypeBuilder{
|
||||||
|
@ -1243,7 +1531,7 @@ func file_pkg_services_control_service_proto_init() {
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
||||||
RawDescriptor: file_pkg_services_control_service_proto_rawDesc,
|
RawDescriptor: file_pkg_services_control_service_proto_rawDesc,
|
||||||
NumEnums: 0,
|
NumEnums: 0,
|
||||||
NumMessages: 16,
|
NumMessages: 20,
|
||||||
NumExtensions: 0,
|
NumExtensions: 0,
|
||||||
NumServices: 1,
|
NumServices: 1,
|
||||||
},
|
},
|
||||||
|
|
38
pkg/services/control/service_grpc.pb.go
generated
38
pkg/services/control/service_grpc.pb.go
generated
|
@ -26,6 +26,8 @@ type ControlServiceClient interface {
|
||||||
SetNetmapStatus(ctx context.Context, in *SetNetmapStatusRequest, opts ...grpc.CallOption) (*SetNetmapStatusResponse, error)
|
SetNetmapStatus(ctx context.Context, in *SetNetmapStatusRequest, opts ...grpc.CallOption) (*SetNetmapStatusResponse, error)
|
||||||
// Mark objects to be removed from node's local object storage.
|
// Mark objects to be removed from node's local object storage.
|
||||||
DropObjects(ctx context.Context, in *DropObjectsRequest, opts ...grpc.CallOption) (*DropObjectsResponse, error)
|
DropObjects(ctx context.Context, in *DropObjectsRequest, opts ...grpc.CallOption) (*DropObjectsResponse, error)
|
||||||
|
// Returns list that contains information about all shards of a node.
|
||||||
|
ListShards(ctx context.Context, in *ListShardsRequest, opts ...grpc.CallOption) (*ListShardsResponse, error)
|
||||||
}
|
}
|
||||||
|
|
||||||
type controlServiceClient struct {
|
type controlServiceClient struct {
|
||||||
|
@ -72,6 +74,15 @@ func (c *controlServiceClient) DropObjects(ctx context.Context, in *DropObjectsR
|
||||||
return out, nil
|
return out, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (c *controlServiceClient) ListShards(ctx context.Context, in *ListShardsRequest, opts ...grpc.CallOption) (*ListShardsResponse, error) {
|
||||||
|
out := new(ListShardsResponse)
|
||||||
|
err := c.cc.Invoke(ctx, "/control.ControlService/ListShards", in, out, opts...)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
return out, nil
|
||||||
|
}
|
||||||
|
|
||||||
// ControlServiceServer is the server API for ControlService service.
|
// ControlServiceServer is the server API for ControlService service.
|
||||||
// All implementations should embed UnimplementedControlServiceServer
|
// All implementations should embed UnimplementedControlServiceServer
|
||||||
// for forward compatibility
|
// for forward compatibility
|
||||||
|
@ -84,6 +95,8 @@ type ControlServiceServer interface {
|
||||||
SetNetmapStatus(context.Context, *SetNetmapStatusRequest) (*SetNetmapStatusResponse, error)
|
SetNetmapStatus(context.Context, *SetNetmapStatusRequest) (*SetNetmapStatusResponse, error)
|
||||||
// Mark objects to be removed from node's local object storage.
|
// Mark objects to be removed from node's local object storage.
|
||||||
DropObjects(context.Context, *DropObjectsRequest) (*DropObjectsResponse, error)
|
DropObjects(context.Context, *DropObjectsRequest) (*DropObjectsResponse, error)
|
||||||
|
// Returns list that contains information about all shards of a node.
|
||||||
|
ListShards(context.Context, *ListShardsRequest) (*ListShardsResponse, error)
|
||||||
}
|
}
|
||||||
|
|
||||||
// UnimplementedControlServiceServer should be embedded to have forward compatible implementations.
|
// UnimplementedControlServiceServer should be embedded to have forward compatible implementations.
|
||||||
|
@ -102,6 +115,9 @@ func (UnimplementedControlServiceServer) SetNetmapStatus(context.Context, *SetNe
|
||||||
func (UnimplementedControlServiceServer) DropObjects(context.Context, *DropObjectsRequest) (*DropObjectsResponse, error) {
|
func (UnimplementedControlServiceServer) DropObjects(context.Context, *DropObjectsRequest) (*DropObjectsResponse, error) {
|
||||||
return nil, status.Errorf(codes.Unimplemented, "method DropObjects not implemented")
|
return nil, status.Errorf(codes.Unimplemented, "method DropObjects not implemented")
|
||||||
}
|
}
|
||||||
|
func (UnimplementedControlServiceServer) ListShards(context.Context, *ListShardsRequest) (*ListShardsResponse, error) {
|
||||||
|
return nil, status.Errorf(codes.Unimplemented, "method ListShards not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
// UnsafeControlServiceServer may be embedded to opt out of forward compatibility for this service.
|
// UnsafeControlServiceServer may be embedded to opt out of forward compatibility for this service.
|
||||||
// Use of this interface is not recommended, as added methods to ControlServiceServer will
|
// Use of this interface is not recommended, as added methods to ControlServiceServer will
|
||||||
|
@ -186,6 +202,24 @@ func _ControlService_DropObjects_Handler(srv interface{}, ctx context.Context, d
|
||||||
return interceptor(ctx, in, info, handler)
|
return interceptor(ctx, in, info, handler)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func _ControlService_ListShards_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
||||||
|
in := new(ListShardsRequest)
|
||||||
|
if err := dec(in); err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
if interceptor == nil {
|
||||||
|
return srv.(ControlServiceServer).ListShards(ctx, in)
|
||||||
|
}
|
||||||
|
info := &grpc.UnaryServerInfo{
|
||||||
|
Server: srv,
|
||||||
|
FullMethod: "/control.ControlService/ListShards",
|
||||||
|
}
|
||||||
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
||||||
|
return srv.(ControlServiceServer).ListShards(ctx, req.(*ListShardsRequest))
|
||||||
|
}
|
||||||
|
return interceptor(ctx, in, info, handler)
|
||||||
|
}
|
||||||
|
|
||||||
// ControlService_ServiceDesc is the grpc.ServiceDesc for ControlService service.
|
// ControlService_ServiceDesc is the grpc.ServiceDesc for ControlService service.
|
||||||
// It's only intended for direct use with grpc.RegisterService,
|
// It's only intended for direct use with grpc.RegisterService,
|
||||||
// and not to be introspected or modified (even as a copy)
|
// and not to be introspected or modified (even as a copy)
|
||||||
|
@ -209,6 +243,10 @@ var ControlService_ServiceDesc = grpc.ServiceDesc{
|
||||||
MethodName: "DropObjects",
|
MethodName: "DropObjects",
|
||||||
Handler: _ControlService_DropObjects_Handler,
|
Handler: _ControlService_DropObjects_Handler,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
MethodName: "ListShards",
|
||||||
|
Handler: _ControlService_ListShards_Handler,
|
||||||
|
},
|
||||||
},
|
},
|
||||||
Streams: []grpc.StreamDesc{},
|
Streams: []grpc.StreamDesc{},
|
||||||
Metadata: "pkg/services/control/service.proto",
|
Metadata: "pkg/services/control/service.proto",
|
||||||
|
|
236
pkg/services/control/types.pb.go
generated
236
pkg/services/control/types.pb.go
generated
|
@ -134,6 +134,59 @@ func (HealthStatus) EnumDescriptor() ([]byte, []int) {
|
||||||
return file_pkg_services_control_types_proto_rawDescGZIP(), []int{1}
|
return file_pkg_services_control_types_proto_rawDescGZIP(), []int{1}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Work mode of the shard.
|
||||||
|
type ShardMode int32
|
||||||
|
|
||||||
|
const (
|
||||||
|
// Undefined mode, default value.
|
||||||
|
ShardMode_SHARD_MODE_UNDEFINED ShardMode = 0
|
||||||
|
// Read-write.
|
||||||
|
ShardMode_READ_WRITE ShardMode = 1
|
||||||
|
// Read-only.
|
||||||
|
ShardMode_READ_ONLY ShardMode = 2
|
||||||
|
)
|
||||||
|
|
||||||
|
// Enum value maps for ShardMode.
|
||||||
|
var (
|
||||||
|
ShardMode_name = map[int32]string{
|
||||||
|
0: "SHARD_MODE_UNDEFINED",
|
||||||
|
1: "READ_WRITE",
|
||||||
|
2: "READ_ONLY",
|
||||||
|
}
|
||||||
|
ShardMode_value = map[string]int32{
|
||||||
|
"SHARD_MODE_UNDEFINED": 0,
|
||||||
|
"READ_WRITE": 1,
|
||||||
|
"READ_ONLY": 2,
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
|
func (x ShardMode) Enum() *ShardMode {
|
||||||
|
p := new(ShardMode)
|
||||||
|
*p = x
|
||||||
|
return p
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x ShardMode) String() string {
|
||||||
|
return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
|
||||||
|
}
|
||||||
|
|
||||||
|
func (ShardMode) Descriptor() protoreflect.EnumDescriptor {
|
||||||
|
return file_pkg_services_control_types_proto_enumTypes[2].Descriptor()
|
||||||
|
}
|
||||||
|
|
||||||
|
func (ShardMode) Type() protoreflect.EnumType {
|
||||||
|
return &file_pkg_services_control_types_proto_enumTypes[2]
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x ShardMode) Number() protoreflect.EnumNumber {
|
||||||
|
return protoreflect.EnumNumber(x)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Deprecated: Use ShardMode.Descriptor instead.
|
||||||
|
func (ShardMode) EnumDescriptor() ([]byte, []int) {
|
||||||
|
return file_pkg_services_control_types_proto_rawDescGZIP(), []int{2}
|
||||||
|
}
|
||||||
|
|
||||||
// Signature of some message.
|
// Signature of some message.
|
||||||
type Signature struct {
|
type Signature struct {
|
||||||
state protoimpl.MessageState
|
state protoimpl.MessageState
|
||||||
|
@ -329,6 +382,91 @@ func (x *Netmap) GetNodes() []*NodeInfo {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Shard description.
|
||||||
|
type ShardInfo struct {
|
||||||
|
state protoimpl.MessageState
|
||||||
|
sizeCache protoimpl.SizeCache
|
||||||
|
unknownFields protoimpl.UnknownFields
|
||||||
|
|
||||||
|
// ID of the shard.
|
||||||
|
Shard_ID []byte `protobuf:"bytes,1,opt,name=shard_ID,json=shardID,proto3" json:"shard_ID,omitempty"`
|
||||||
|
// Path to shard's metabase.
|
||||||
|
MetabasePath string `protobuf:"bytes,2,opt,name=metabase_path,json=metabasePath,proto3" json:"metabase_path,omitempty"`
|
||||||
|
// Path to shard's blobstore.
|
||||||
|
BlobstorPath string `protobuf:"bytes,3,opt,name=blobstor_path,json=blobstorPath,proto3" json:"blobstor_path,omitempty"`
|
||||||
|
// Path to shard's write-cache, empty if disabled.
|
||||||
|
WritecachePath string `protobuf:"bytes,4,opt,name=writecache_path,json=writecachePath,proto3" json:"writecache_path,omitempty"`
|
||||||
|
// Work mode of the shard.
|
||||||
|
Mode ShardMode `protobuf:"varint,5,opt,name=mode,proto3,enum=control.ShardMode" json:"mode,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *ShardInfo) Reset() {
|
||||||
|
*x = ShardInfo{}
|
||||||
|
if protoimpl.UnsafeEnabled {
|
||||||
|
mi := &file_pkg_services_control_types_proto_msgTypes[3]
|
||||||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
|
ms.StoreMessageInfo(mi)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *ShardInfo) String() string {
|
||||||
|
return protoimpl.X.MessageStringOf(x)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (*ShardInfo) ProtoMessage() {}
|
||||||
|
|
||||||
|
func (x *ShardInfo) ProtoReflect() protoreflect.Message {
|
||||||
|
mi := &file_pkg_services_control_types_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 ShardInfo.ProtoReflect.Descriptor instead.
|
||||||
|
func (*ShardInfo) Descriptor() ([]byte, []int) {
|
||||||
|
return file_pkg_services_control_types_proto_rawDescGZIP(), []int{3}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *ShardInfo) GetShard_ID() []byte {
|
||||||
|
if x != nil {
|
||||||
|
return x.Shard_ID
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *ShardInfo) GetMetabasePath() string {
|
||||||
|
if x != nil {
|
||||||
|
return x.MetabasePath
|
||||||
|
}
|
||||||
|
return ""
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *ShardInfo) GetBlobstorPath() string {
|
||||||
|
if x != nil {
|
||||||
|
return x.BlobstorPath
|
||||||
|
}
|
||||||
|
return ""
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *ShardInfo) GetWritecachePath() string {
|
||||||
|
if x != nil {
|
||||||
|
return x.WritecachePath
|
||||||
|
}
|
||||||
|
return ""
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *ShardInfo) GetMode() ShardMode {
|
||||||
|
if x != nil {
|
||||||
|
return x.Mode
|
||||||
|
}
|
||||||
|
return ShardMode_SHARD_MODE_UNDEFINED
|
||||||
|
}
|
||||||
|
|
||||||
// Administrator-defined Attributes of the NeoFS Storage Node.
|
// Administrator-defined Attributes of the NeoFS Storage Node.
|
||||||
//
|
//
|
||||||
// `Attribute` is a Key-Value metadata pair. Key name must be a valid UTF-8
|
// `Attribute` is a Key-Value metadata pair. Key name must be a valid UTF-8
|
||||||
|
@ -385,7 +523,7 @@ type NodeInfo_Attribute struct {
|
||||||
func (x *NodeInfo_Attribute) Reset() {
|
func (x *NodeInfo_Attribute) Reset() {
|
||||||
*x = NodeInfo_Attribute{}
|
*x = NodeInfo_Attribute{}
|
||||||
if protoimpl.UnsafeEnabled {
|
if protoimpl.UnsafeEnabled {
|
||||||
mi := &file_pkg_services_control_types_proto_msgTypes[3]
|
mi := &file_pkg_services_control_types_proto_msgTypes[4]
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
ms.StoreMessageInfo(mi)
|
ms.StoreMessageInfo(mi)
|
||||||
}
|
}
|
||||||
|
@ -398,7 +536,7 @@ func (x *NodeInfo_Attribute) String() string {
|
||||||
func (*NodeInfo_Attribute) ProtoMessage() {}
|
func (*NodeInfo_Attribute) ProtoMessage() {}
|
||||||
|
|
||||||
func (x *NodeInfo_Attribute) ProtoReflect() protoreflect.Message {
|
func (x *NodeInfo_Attribute) ProtoReflect() protoreflect.Message {
|
||||||
mi := &file_pkg_services_control_types_proto_msgTypes[3]
|
mi := &file_pkg_services_control_types_proto_msgTypes[4]
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
if protoimpl.UnsafeEnabled && x != nil {
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
if ms.LoadMessageInfo() == nil {
|
if ms.LoadMessageInfo() == nil {
|
||||||
|
@ -464,22 +602,39 @@ var file_pkg_services_control_types_proto_rawDesc = []byte{
|
||||||
0x12, 0x14, 0x0a, 0x05, 0x65, 0x70, 0x6f, 0x63, 0x68, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52,
|
0x12, 0x14, 0x0a, 0x05, 0x65, 0x70, 0x6f, 0x63, 0x68, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52,
|
||||||
0x05, 0x65, 0x70, 0x6f, 0x63, 0x68, 0x12, 0x27, 0x0a, 0x05, 0x6e, 0x6f, 0x64, 0x65, 0x73, 0x18,
|
0x05, 0x65, 0x70, 0x6f, 0x63, 0x68, 0x12, 0x27, 0x0a, 0x05, 0x6e, 0x6f, 0x64, 0x65, 0x73, 0x18,
|
||||||
0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x11, 0x2e, 0x63, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x2e,
|
0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x11, 0x2e, 0x63, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x2e,
|
||||||
0x4e, 0x6f, 0x64, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x05, 0x6e, 0x6f, 0x64, 0x65, 0x73, 0x2a,
|
0x4e, 0x6f, 0x64, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x05, 0x6e, 0x6f, 0x64, 0x65, 0x73, 0x22,
|
||||||
0x4e, 0x0a, 0x0c, 0x4e, 0x65, 0x74, 0x6d, 0x61, 0x70, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12,
|
0xc1, 0x01, 0x0a, 0x09, 0x53, 0x68, 0x61, 0x72, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x19, 0x0a,
|
||||||
0x14, 0x0a, 0x10, 0x53, 0x54, 0x41, 0x54, 0x55, 0x53, 0x5f, 0x55, 0x4e, 0x44, 0x45, 0x46, 0x49,
|
0x08, 0x73, 0x68, 0x61, 0x72, 0x64, 0x5f, 0x49, 0x44, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52,
|
||||||
0x4e, 0x45, 0x44, 0x10, 0x00, 0x12, 0x0a, 0x0a, 0x06, 0x4f, 0x4e, 0x4c, 0x49, 0x4e, 0x45, 0x10,
|
0x07, 0x73, 0x68, 0x61, 0x72, 0x64, 0x49, 0x44, 0x12, 0x23, 0x0a, 0x0d, 0x6d, 0x65, 0x74, 0x61,
|
||||||
0x01, 0x12, 0x0b, 0x0a, 0x07, 0x4f, 0x46, 0x46, 0x4c, 0x49, 0x4e, 0x45, 0x10, 0x02, 0x12, 0x0f,
|
0x62, 0x61, 0x73, 0x65, 0x5f, 0x70, 0x61, 0x74, 0x68, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
|
||||||
0x0a, 0x0b, 0x4d, 0x41, 0x49, 0x4e, 0x54, 0x45, 0x4e, 0x41, 0x4e, 0x43, 0x45, 0x10, 0x03, 0x2a,
|
0x0c, 0x6d, 0x65, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x50, 0x61, 0x74, 0x68, 0x12, 0x23, 0x0a,
|
||||||
0x57, 0x0a, 0x0c, 0x48, 0x65, 0x61, 0x6c, 0x74, 0x68, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12,
|
0x0d, 0x62, 0x6c, 0x6f, 0x62, 0x73, 0x74, 0x6f, 0x72, 0x5f, 0x70, 0x61, 0x74, 0x68, 0x18, 0x03,
|
||||||
0x1b, 0x0a, 0x17, 0x48, 0x45, 0x41, 0x4c, 0x54, 0x48, 0x5f, 0x53, 0x54, 0x41, 0x54, 0x55, 0x53,
|
0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x62, 0x6c, 0x6f, 0x62, 0x73, 0x74, 0x6f, 0x72, 0x50, 0x61,
|
||||||
0x5f, 0x55, 0x4e, 0x44, 0x45, 0x46, 0x49, 0x4e, 0x45, 0x44, 0x10, 0x00, 0x12, 0x0c, 0x0a, 0x08,
|
0x74, 0x68, 0x12, 0x27, 0x0a, 0x0f, 0x77, 0x72, 0x69, 0x74, 0x65, 0x63, 0x61, 0x63, 0x68, 0x65,
|
||||||
0x53, 0x54, 0x41, 0x52, 0x54, 0x49, 0x4e, 0x47, 0x10, 0x01, 0x12, 0x09, 0x0a, 0x05, 0x52, 0x45,
|
0x5f, 0x70, 0x61, 0x74, 0x68, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x77, 0x72, 0x69,
|
||||||
0x41, 0x44, 0x59, 0x10, 0x02, 0x12, 0x11, 0x0a, 0x0d, 0x53, 0x48, 0x55, 0x54, 0x54, 0x49, 0x4e,
|
0x74, 0x65, 0x63, 0x61, 0x63, 0x68, 0x65, 0x50, 0x61, 0x74, 0x68, 0x12, 0x26, 0x0a, 0x04, 0x6d,
|
||||||
0x47, 0x5f, 0x44, 0x4f, 0x57, 0x4e, 0x10, 0x03, 0x42, 0x36, 0x5a, 0x34, 0x67, 0x69, 0x74, 0x68,
|
0x6f, 0x64, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x12, 0x2e, 0x63, 0x6f, 0x6e, 0x74,
|
||||||
0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x6e, 0x73, 0x70, 0x63, 0x63, 0x2d, 0x64, 0x65, 0x76,
|
0x72, 0x6f, 0x6c, 0x2e, 0x53, 0x68, 0x61, 0x72, 0x64, 0x4d, 0x6f, 0x64, 0x65, 0x52, 0x04, 0x6d,
|
||||||
0x2f, 0x6e, 0x65, 0x6f, 0x66, 0x73, 0x2d, 0x6e, 0x6f, 0x64, 0x65, 0x2f, 0x70, 0x6b, 0x67, 0x2f,
|
0x6f, 0x64, 0x65, 0x2a, 0x4e, 0x0a, 0x0c, 0x4e, 0x65, 0x74, 0x6d, 0x61, 0x70, 0x53, 0x74, 0x61,
|
||||||
0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c,
|
0x74, 0x75, 0x73, 0x12, 0x14, 0x0a, 0x10, 0x53, 0x54, 0x41, 0x54, 0x55, 0x53, 0x5f, 0x55, 0x4e,
|
||||||
0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
0x44, 0x45, 0x46, 0x49, 0x4e, 0x45, 0x44, 0x10, 0x00, 0x12, 0x0a, 0x0a, 0x06, 0x4f, 0x4e, 0x4c,
|
||||||
|
0x49, 0x4e, 0x45, 0x10, 0x01, 0x12, 0x0b, 0x0a, 0x07, 0x4f, 0x46, 0x46, 0x4c, 0x49, 0x4e, 0x45,
|
||||||
|
0x10, 0x02, 0x12, 0x0f, 0x0a, 0x0b, 0x4d, 0x41, 0x49, 0x4e, 0x54, 0x45, 0x4e, 0x41, 0x4e, 0x43,
|
||||||
|
0x45, 0x10, 0x03, 0x2a, 0x57, 0x0a, 0x0c, 0x48, 0x65, 0x61, 0x6c, 0x74, 0x68, 0x53, 0x74, 0x61,
|
||||||
|
0x74, 0x75, 0x73, 0x12, 0x1b, 0x0a, 0x17, 0x48, 0x45, 0x41, 0x4c, 0x54, 0x48, 0x5f, 0x53, 0x54,
|
||||||
|
0x41, 0x54, 0x55, 0x53, 0x5f, 0x55, 0x4e, 0x44, 0x45, 0x46, 0x49, 0x4e, 0x45, 0x44, 0x10, 0x00,
|
||||||
|
0x12, 0x0c, 0x0a, 0x08, 0x53, 0x54, 0x41, 0x52, 0x54, 0x49, 0x4e, 0x47, 0x10, 0x01, 0x12, 0x09,
|
||||||
|
0x0a, 0x05, 0x52, 0x45, 0x41, 0x44, 0x59, 0x10, 0x02, 0x12, 0x11, 0x0a, 0x0d, 0x53, 0x48, 0x55,
|
||||||
|
0x54, 0x54, 0x49, 0x4e, 0x47, 0x5f, 0x44, 0x4f, 0x57, 0x4e, 0x10, 0x03, 0x2a, 0x44, 0x0a, 0x09,
|
||||||
|
0x53, 0x68, 0x61, 0x72, 0x64, 0x4d, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x14, 0x53, 0x48, 0x41,
|
||||||
|
0x52, 0x44, 0x5f, 0x4d, 0x4f, 0x44, 0x45, 0x5f, 0x55, 0x4e, 0x44, 0x45, 0x46, 0x49, 0x4e, 0x45,
|
||||||
|
0x44, 0x10, 0x00, 0x12, 0x0e, 0x0a, 0x0a, 0x52, 0x45, 0x41, 0x44, 0x5f, 0x57, 0x52, 0x49, 0x54,
|
||||||
|
0x45, 0x10, 0x01, 0x12, 0x0d, 0x0a, 0x09, 0x52, 0x45, 0x41, 0x44, 0x5f, 0x4f, 0x4e, 0x4c, 0x59,
|
||||||
|
0x10, 0x02, 0x42, 0x36, 0x5a, 0x34, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d,
|
||||||
|
0x2f, 0x6e, 0x73, 0x70, 0x63, 0x63, 0x2d, 0x64, 0x65, 0x76, 0x2f, 0x6e, 0x65, 0x6f, 0x66, 0x73,
|
||||||
|
0x2d, 0x6e, 0x6f, 0x64, 0x65, 0x2f, 0x70, 0x6b, 0x67, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63,
|
||||||
|
0x65, 0x73, 0x2f, 0x63, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74,
|
||||||
|
0x6f, 0x33,
|
||||||
}
|
}
|
||||||
|
|
||||||
var (
|
var (
|
||||||
|
@ -494,25 +649,28 @@ func file_pkg_services_control_types_proto_rawDescGZIP() []byte {
|
||||||
return file_pkg_services_control_types_proto_rawDescData
|
return file_pkg_services_control_types_proto_rawDescData
|
||||||
}
|
}
|
||||||
|
|
||||||
var file_pkg_services_control_types_proto_enumTypes = make([]protoimpl.EnumInfo, 2)
|
var file_pkg_services_control_types_proto_enumTypes = make([]protoimpl.EnumInfo, 3)
|
||||||
var file_pkg_services_control_types_proto_msgTypes = make([]protoimpl.MessageInfo, 4)
|
var file_pkg_services_control_types_proto_msgTypes = make([]protoimpl.MessageInfo, 5)
|
||||||
var file_pkg_services_control_types_proto_goTypes = []interface{}{
|
var file_pkg_services_control_types_proto_goTypes = []interface{}{
|
||||||
(NetmapStatus)(0), // 0: control.NetmapStatus
|
(NetmapStatus)(0), // 0: control.NetmapStatus
|
||||||
(HealthStatus)(0), // 1: control.HealthStatus
|
(HealthStatus)(0), // 1: control.HealthStatus
|
||||||
(*Signature)(nil), // 2: control.Signature
|
(ShardMode)(0), // 2: control.ShardMode
|
||||||
(*NodeInfo)(nil), // 3: control.NodeInfo
|
(*Signature)(nil), // 3: control.Signature
|
||||||
(*Netmap)(nil), // 4: control.Netmap
|
(*NodeInfo)(nil), // 4: control.NodeInfo
|
||||||
(*NodeInfo_Attribute)(nil), // 5: control.NodeInfo.Attribute
|
(*Netmap)(nil), // 5: control.Netmap
|
||||||
|
(*ShardInfo)(nil), // 6: control.ShardInfo
|
||||||
|
(*NodeInfo_Attribute)(nil), // 7: control.NodeInfo.Attribute
|
||||||
}
|
}
|
||||||
var file_pkg_services_control_types_proto_depIdxs = []int32{
|
var file_pkg_services_control_types_proto_depIdxs = []int32{
|
||||||
5, // 0: control.NodeInfo.attributes:type_name -> control.NodeInfo.Attribute
|
7, // 0: control.NodeInfo.attributes:type_name -> control.NodeInfo.Attribute
|
||||||
0, // 1: control.NodeInfo.state:type_name -> control.NetmapStatus
|
0, // 1: control.NodeInfo.state:type_name -> control.NetmapStatus
|
||||||
3, // 2: control.Netmap.nodes:type_name -> control.NodeInfo
|
4, // 2: control.Netmap.nodes:type_name -> control.NodeInfo
|
||||||
3, // [3:3] is the sub-list for method output_type
|
2, // 3: control.ShardInfo.mode:type_name -> control.ShardMode
|
||||||
3, // [3:3] is the sub-list for method input_type
|
4, // [4:4] is the sub-list for method output_type
|
||||||
3, // [3:3] is the sub-list for extension type_name
|
4, // [4:4] is the sub-list for method input_type
|
||||||
3, // [3:3] is the sub-list for extension extendee
|
4, // [4:4] is the sub-list for extension type_name
|
||||||
0, // [0:3] is the sub-list for field type_name
|
4, // [4:4] is the sub-list for extension extendee
|
||||||
|
0, // [0:4] is the sub-list for field type_name
|
||||||
}
|
}
|
||||||
|
|
||||||
func init() { file_pkg_services_control_types_proto_init() }
|
func init() { file_pkg_services_control_types_proto_init() }
|
||||||
|
@ -558,6 +716,18 @@ func file_pkg_services_control_types_proto_init() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
file_pkg_services_control_types_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
|
file_pkg_services_control_types_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
|
||||||
|
switch v := v.(*ShardInfo); i {
|
||||||
|
case 0:
|
||||||
|
return &v.state
|
||||||
|
case 1:
|
||||||
|
return &v.sizeCache
|
||||||
|
case 2:
|
||||||
|
return &v.unknownFields
|
||||||
|
default:
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
}
|
||||||
|
file_pkg_services_control_types_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
|
||||||
switch v := v.(*NodeInfo_Attribute); i {
|
switch v := v.(*NodeInfo_Attribute); i {
|
||||||
case 0:
|
case 0:
|
||||||
return &v.state
|
return &v.state
|
||||||
|
@ -575,8 +745,8 @@ func file_pkg_services_control_types_proto_init() {
|
||||||
File: protoimpl.DescBuilder{
|
File: protoimpl.DescBuilder{
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
||||||
RawDescriptor: file_pkg_services_control_types_proto_rawDesc,
|
RawDescriptor: file_pkg_services_control_types_proto_rawDesc,
|
||||||
NumEnums: 2,
|
NumEnums: 3,
|
||||||
NumMessages: 4,
|
NumMessages: 5,
|
||||||
NumExtensions: 0,
|
NumExtensions: 0,
|
||||||
NumServices: 0,
|
NumServices: 0,
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue