Files
k3s/vendor/github.com/containerd/containerd/api/events/image.proto
Darren Shepherd fa08d6076c Update vendor
2019-01-11 21:58:27 -07:00

23 lines
459 B
Protocol Buffer

syntax = "proto3";
package containerd.services.images.v1;
import weak "github.com/containerd/containerd/protobuf/plugin/fieldpath.proto";
option go_package = "github.com/containerd/containerd/api/events;events";
option (containerd.plugin.fieldpath_all) = true;
message ImageCreate {
string name = 1;
map<string, string> labels = 2;
}
message ImageUpdate {
string name = 1;
map<string, string> labels = 2;
}
message ImageDelete {
string name = 1;
}