diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-04-15 18:37:18 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-15 18:37:18 +0200 |
commit | 9b78bf9293bd7920b60aa0bf41fa40f9200f54ff (patch) | |
tree | 10fc513e65d5aa0fb6818674478549c121330e8b /pkg/domain/entities/engine_container.go | |
parent | cc9b78f07ca9941260b74ad07f3b94357e138286 (diff) | |
parent | 165aef7766953cd0c0589ffa1abc25022a905adb (diff) | |
download | podman-9b78bf9293bd7920b60aa0bf41fa40f9200f54ff.tar.gz podman-9b78bf9293bd7920b60aa0bf41fa40f9200f54ff.tar.bz2 podman-9b78bf9293bd7920b60aa0bf41fa40f9200f54ff.zip |
Merge pull request #5770 from baude/v2events
podmanv2 events
Diffstat (limited to 'pkg/domain/entities/engine_container.go')
-rw-r--r-- | pkg/domain/entities/engine_container.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pkg/domain/entities/engine_container.go b/pkg/domain/entities/engine_container.go index 2001ab49c..5fdb9a8a6 100644 --- a/pkg/domain/entities/engine_container.go +++ b/pkg/domain/entities/engine_container.go @@ -36,6 +36,7 @@ type ContainerEngine interface { ContainerUnmount(ctx context.Context, nameOrIds []string, options ContainerUnmountOptions) ([]*ContainerUnmountReport, error) ContainerUnpause(ctx context.Context, namesOrIds []string, options PauseUnPauseOptions) ([]*PauseUnpauseReport, error) ContainerWait(ctx context.Context, namesOrIds []string, options WaitOptions) ([]WaitReport, error) + Events(ctx context.Context, opts EventsOptions) error HealthCheckRun(ctx context.Context, nameOrId string, options HealthCheckOptions) (*define.HealthCheckResults, error) Info(ctx context.Context) (*define.Info, error) PodCreate(ctx context.Context, opts PodCreateOptions) (*PodCreateReport, error) |