github.com/containerd/Containerd@v1.4.13/api/events/snapshot.proto (about) 1 syntax = "proto3"; 2 3 package containerd.events; 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 SnapshotPrepare { 11 string key = 1; 12 string parent = 2; 13 } 14 15 message SnapshotCommit { 16 string key = 1; 17 string name = 2; 18 } 19 20 message SnapshotRemove { 21 string key = 1; 22 }