diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-04-06 22:04:16 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-06 22:04:16 +0200 |
commit | 843fa25890199c04b8419833d39bdedf4ead391c (patch) | |
tree | 42d2d5b7b9c457935c963de6aa601433f1fd734e /pkg/domain/entities/containers.go | |
parent | 7d95e0c47ad7203c6ad3e5a0441a309e5368dc52 (diff) | |
parent | b22254dc8bfdea5153761e93298182286f874bac (diff) | |
download | podman-843fa25890199c04b8419833d39bdedf4ead391c.tar.gz podman-843fa25890199c04b8419833d39bdedf4ead391c.tar.bz2 podman-843fa25890199c04b8419833d39bdedf4ead391c.zip |
Merge pull request #5716 from baude/v2ps
podmanv2 ps
Diffstat (limited to 'pkg/domain/entities/containers.go')
-rw-r--r-- | pkg/domain/entities/containers.go | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/pkg/domain/entities/containers.go b/pkg/domain/entities/containers.go index 6b4bb9ba2..4f94e009f 100644 --- a/pkg/domain/entities/containers.go +++ b/pkg/domain/entities/containers.go @@ -207,3 +207,20 @@ type ContainerStartReport struct { Err error ExitCode int } + +// ContainerListOptions describes the CLI options +// for listing containers +type ContainerListOptions struct { + All bool + Filters map[string][]string + Format string + Last int + Latest bool + Namespace bool + Pod bool + Quiet bool + Size bool + Sort string + Sync bool + Watch uint +} |