mirror of
https://github.com/vmware-tanzu/velero.git
synced 2026-02-12 23:01:39 +00:00
Refactor plugin management: - support multiple plugins per executable - support restarting a plugin process in the event it terminates - simplify plugin lifecycle management by using separate managers for each scope (server vs backup vs restore) Signed-off-by: Andy Goldstein <andy.goldstein@gmail.com>
21 lines
412 B
Protocol Buffer
21 lines
412 B
Protocol Buffer
syntax = "proto3";
|
|
package generated;
|
|
|
|
import "Shared.proto";
|
|
|
|
message RestoreExecuteRequest {
|
|
string plugin = 1;
|
|
bytes item = 2;
|
|
bytes restore = 3;
|
|
}
|
|
|
|
message RestoreExecuteResponse {
|
|
bytes item = 1;
|
|
string warning = 2;
|
|
}
|
|
|
|
service RestoreItemAction {
|
|
rpc AppliesTo(AppliesToRequest) returns (AppliesToResponse);
|
|
rpc Execute(RestoreExecuteRequest) returns (RestoreExecuteResponse);
|
|
}
|