mirror of
https://github.com/vmware-tanzu/velero.git
synced 2026-01-07 05:46:37 +00:00
27 lines
503 B
Protocol Buffer
27 lines
503 B
Protocol Buffer
syntax = "proto3";
|
|
package generated;
|
|
|
|
import "Shared.proto";
|
|
|
|
message ExecuteRequest {
|
|
bytes item = 1;
|
|
bytes backup = 2;
|
|
}
|
|
|
|
message ExecuteResponse {
|
|
bytes item = 1;
|
|
repeated ResourceIdentifier additionalItems = 2;
|
|
}
|
|
|
|
message ResourceIdentifier {
|
|
string group = 1;
|
|
string resource = 2;
|
|
string namespace = 3;
|
|
string name = 4;
|
|
}
|
|
|
|
service BackupItemAction {
|
|
rpc AppliesTo(Empty) returns (AppliesToResponse);
|
|
rpc Execute(ExecuteRequest) returns (ExecuteResponse);
|
|
}
|