mirror of
https://github.com/vmware-tanzu/velero.git
synced 2026-01-08 06:15:40 +00:00
* add additionalItems to restore item actions Signed-off-by: Steve Kriss <krisss@vmware.com> Co-authored-by: Andy Goldstein <goldsteina@vmware.com>
39 lines
694 B
Protocol Buffer
39 lines
694 B
Protocol Buffer
syntax = "proto3";
|
|
package generated;
|
|
|
|
message Empty {}
|
|
|
|
message InitRequest {
|
|
string plugin = 1;
|
|
map<string, string> config = 2;
|
|
}
|
|
|
|
message AppliesToRequest {
|
|
string plugin = 1;
|
|
}
|
|
|
|
message AppliesToResponse {
|
|
repeated string includedNamespaces = 1;
|
|
repeated string excludedNamespaces = 2;
|
|
repeated string includedResources = 3;
|
|
repeated string excludedResources = 4;
|
|
string selector = 5;
|
|
}
|
|
|
|
message Stack {
|
|
repeated StackFrame frames = 1;
|
|
}
|
|
|
|
message StackFrame {
|
|
string file = 1;
|
|
int32 line = 2;
|
|
string function = 3;
|
|
}
|
|
|
|
message ResourceIdentifier {
|
|
string group = 1;
|
|
string resource = 2;
|
|
string namespace = 3;
|
|
string name = 4;
|
|
}
|