syntax = "proto3"; package containerd.services.events.v1; import "gogoproto/gogo.proto"; import "github.com/containerd/containerd/protobuf/plugin/fieldpath.proto"; option go_package = "github.com/containerd/containerd/api/services/events/v1;events"; option (containerd.plugin.fieldpath_all) = true; message NamespaceCreate { string name = 1; map labels = 2; } message NamespaceUpdate { string name = 1; map labels = 2; } message NamespaceDelete { string name = 1; }