github.com/lalkh/containerd@v1.4.3/api/events/image.proto (about) 1 syntax = "proto3"; 2 3 package containerd.services.images.v1; 4 5 import weak "github.com/containerd/containerd/protobuf/plugin/fieldpath.proto"; 6 7 option go_package = "github.com/containerd/containerd/api/events;events"; 8 option (containerd.plugin.fieldpath_all) = true; 9 10 message ImageCreate { 11 string name = 1; 12 map<string, string> labels = 2; 13 } 14 15 message ImageUpdate { 16 string name = 1; 17 map<string, string> labels = 2; 18 } 19 20 message ImageDelete { 21 string name = 1; 22 }