diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2022-04-08 07:28:16 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-08 07:28:16 -0400 |
commit | 0c9c3e6714905fbb493e0b634e09b56ae096592e (patch) | |
tree | 303888c404656f78af9b1a2b3e577386bf68cc96 /pkg/domain/entities/images.go | |
parent | 4bd35cb01f03fd90ff304f666e53fcd222ad77f9 (diff) | |
parent | e133a06d2f4a3e94bfbd60b647046f2f515c9c24 (diff) | |
download | podman-0c9c3e6714905fbb493e0b634e09b56ae096592e.tar.gz podman-0c9c3e6714905fbb493e0b634e09b56ae096592e.tar.bz2 podman-0c9c3e6714905fbb493e0b634e09b56ae096592e.zip |
Merge pull request #13810 from vrothberg/images-size
images --size
Diffstat (limited to 'pkg/domain/entities/images.go')
-rw-r--r-- | pkg/domain/entities/images.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pkg/domain/entities/images.go b/pkg/domain/entities/images.go index 7081c5d25..56126f46c 100644 --- a/pkg/domain/entities/images.go +++ b/pkg/domain/entities/images.go @@ -251,6 +251,7 @@ type ImageSearchReport struct { type ImageListOptions struct { All bool `json:"all" schema:"all"` Filter []string `json:"Filter,omitempty"` + Size bool `json:"size" schema:"size"` } type ImagePruneOptions struct { |