github.com/lalkh/containerd@v1.4.3/api/events/container.proto (about)

     1  syntax = "proto3";
     2  
     3  package containerd.events;
     4  
     5  import "google/protobuf/any.proto";
     6  import weak "gogoproto/gogo.proto";
     7  import weak "github.com/containerd/containerd/protobuf/plugin/fieldpath.proto";
     8  
     9  option go_package = "github.com/containerd/containerd/api/events;events";
    10  option (containerd.plugin.fieldpath_all) = true;
    11  
    12  message ContainerCreate {
    13  	string id = 1;
    14  	string image = 2;
    15  	message Runtime {
    16  		string name = 1;
    17  		google.protobuf.Any options = 2;
    18  	}
    19  	Runtime runtime = 3;
    20  }
    21  
    22  message ContainerUpdate {
    23  	string id = 1;
    24  	string image = 2;
    25  	map<string, string> labels  = 3;
    26  	string snapshot_key = 4;
    27  }
    28  
    29  message ContainerDelete {
    30  	string id = 1;
    31  }