diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2022-07-22 18:12:50 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-22 18:12:50 +0200 |
commit | 9b4df698301379915f886b3863c6ad3166b69989 (patch) | |
tree | 71fa69274209b9beaffe1eb10982cbd1f67f5d34 /pkg/domain/entities | |
parent | 8cd4ecad2e8d15720159f74a606f0785a85ef4df (diff) | |
parent | 9b152ef20e9cadf61547897ae21071098256bf79 (diff) | |
download | podman-9b4df698301379915f886b3863c6ad3166b69989.tar.gz podman-9b4df698301379915f886b3863c6ad3166b69989.tar.bz2 podman-9b4df698301379915f886b3863c6ad3166b69989.zip |
Merge pull request #14967 from sstosh/pause-option
Add pause/unpause --latest, --cidfile, --filter
Diffstat (limited to 'pkg/domain/entities')
-rw-r--r-- | pkg/domain/entities/containers.go | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/pkg/domain/entities/containers.go b/pkg/domain/entities/containers.go index 934a7cbdc..df793034b 100644 --- a/pkg/domain/entities/containers.go +++ b/pkg/domain/entities/containers.go @@ -71,12 +71,15 @@ type StringSliceReport struct { } type PauseUnPauseOptions struct { - All bool + Filters map[string][]string + All bool + Latest bool } type PauseUnpauseReport struct { - Err error - Id string //nolint:revive,stylecheck + Err error + Id string //nolint:revive,stylecheck + RawInput string } type StopOptions struct { |