2021-01-13 12:47:54 +00:00
|
|
|
syntax = "proto3";
|
|
|
|
|
2021-01-13 13:46:39 +00:00
|
|
|
package control;
|
2021-01-13 12:47:54 +00:00
|
|
|
|
|
|
|
import "types.proto";
|
|
|
|
|
2021-01-13 13:46:39 +00:00
|
|
|
option go_package = "github.com/nspcc-dev/neofs-node/pkg/services/control";
|
2021-01-13 12:47:54 +00:00
|
|
|
|
2021-01-13 13:46:39 +00:00
|
|
|
// `ControlService` provides an interface for internal work with the storage node.
|
|
|
|
service ControlService {
|
2021-01-13 12:47:54 +00:00
|
|
|
// Performs health check of the storage node.
|
|
|
|
rpc HealthCheck (HealthCheckRequest) returns (HealthCheckResponse);
|
2021-01-14 16:06:49 +00:00
|
|
|
|
|
|
|
// Returns network map snapshot of the current NeoFS epoch.
|
|
|
|
rpc NetmapSnapshot (NetmapSnapshotRequest) returns (NetmapSnapshotResponse);
|
2021-01-13 12:47:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Health check request.
|
|
|
|
message HealthCheckRequest {
|
|
|
|
// Health check request body.
|
|
|
|
message Body {
|
|
|
|
}
|
|
|
|
|
|
|
|
// Body of health check request message.
|
|
|
|
Body body = 1;
|
|
|
|
|
|
|
|
// Body signature.
|
|
|
|
Signature signature = 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Health check request.
|
|
|
|
message HealthCheckResponse {
|
|
|
|
// Health check response body
|
|
|
|
message Body {
|
|
|
|
// Health status of storage node.
|
|
|
|
HealthStatus status = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Body of health check response message.
|
|
|
|
Body body = 1;
|
|
|
|
|
|
|
|
// Body signature.
|
|
|
|
Signature signature = 2;
|
|
|
|
}
|
2021-01-14 16:06:49 +00:00
|
|
|
|
|
|
|
// Get netmap snapshot request.
|
|
|
|
message NetmapSnapshotRequest {
|
|
|
|
// Get netmap snapshot request body.
|
|
|
|
message Body {
|
|
|
|
}
|
|
|
|
|
|
|
|
// Body of get netmap snapshot request message.
|
|
|
|
Body body = 1;
|
|
|
|
|
|
|
|
// Body signature.
|
|
|
|
Signature signature = 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get netmap snapshot request.
|
|
|
|
message NetmapSnapshotResponse {
|
|
|
|
// Get netmap snapshot response body
|
|
|
|
message Body {
|
|
|
|
// Structure of the requested network map.
|
|
|
|
Netmap netmap = 1 [json_name = "netmap"];
|
|
|
|
}
|
|
|
|
|
|
|
|
// Body of get netmap snapshot response message.
|
|
|
|
Body body = 1;
|
|
|
|
|
|
|
|
// Body signature.
|
|
|
|
Signature signature = 2;
|
|
|
|
}
|