Files
velero/pkg/plugin/proto/Shared.proto
Steve Kriss 179b95c81d convert restorers to plugins
Signed-off-by: Steve Kriss <steve@heptio.com>
2017-11-28 10:58:12 -08:00

16 lines
346 B
Protocol Buffer

syntax = "proto3";
package generated;
message Empty {}
message InitRequest {
map<string, string> config = 1;
}
message AppliesToResponse {
repeated string includedNamespaces = 1;
repeated string excludedNamespaces = 2;
repeated string includedResources = 3;
repeated string excludedResources = 4;
string selector = 5;
}