diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-04-06 18:03:34 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-06 18:03:34 +0200 |
commit | 09f553cc8054a670cb2c333ee47de4311d325635 (patch) | |
tree | 8c69db4a0f11455f92a0c89a90c993e5bd28f6f4 /pkg/domain/entities/engine_container.go | |
parent | 4b69cf095002950b850b6b787f779cc1cc50022f (diff) | |
parent | 5e0b4497365f9b3c2d795e5771a3abec7cd24cbb (diff) | |
download | podman-09f553cc8054a670cb2c333ee47de4311d325635.tar.gz podman-09f553cc8054a670cb2c333ee47de4311d325635.tar.bz2 podman-09f553cc8054a670cb2c333ee47de4311d325635.zip |
Merge pull request #5731 from baude/v2start
podmanv2 start
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 9bf3d51de..264780771 100644 --- a/pkg/domain/entities/engine_container.go +++ b/pkg/domain/entities/engine_container.go @@ -21,6 +21,7 @@ type ContainerEngine interface { ContainerPause(ctx context.Context, namesOrIds []string, options PauseUnPauseOptions) ([]*PauseUnpauseReport, error) ContainerRestart(ctx context.Context, namesOrIds []string, options RestartOptions) ([]*RestartReport, error) ContainerRm(ctx context.Context, namesOrIds []string, options RmOptions) ([]*RmReport, error) + ContainerStart(ctx context.Context, namesOrIds []string, options ContainerStartOptions) ([]*ContainerStartReport, error) ContainerStop(ctx context.Context, namesOrIds []string, options StopOptions) ([]*StopReport, error) ContainerTop(ctx context.Context, options TopOptions) (*StringSliceReport, error) ContainerUnpause(ctx context.Context, namesOrIds []string, options PauseUnPauseOptions) ([]*PauseUnpauseReport, error) |