13 lines
358 B
Protocol Buffer
13 lines
358 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package containerd.windows.hcsshim;
|
|
|
|
import "gogoproto/gogo.proto";
|
|
import "google/protobuf/duration.proto";
|
|
|
|
option go_package = "github.com/containerd/containerd/windows/hcsshimopts;hcsshimopts";
|
|
|
|
message CreateOptions {
|
|
google.protobuf.Duration terminate_duration = 1 [(gogoproto.stdduration) = true, (gogoproto.nullable) = false];
|
|
}
|