summaryrefslogtreecommitdiff
path: root/pkg/bindings
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2022-04-08 07:28:16 -0400
committerGitHub <noreply@github.com>2022-04-08 07:28:16 -0400
commit0c9c3e6714905fbb493e0b634e09b56ae096592e (patch)
tree303888c404656f78af9b1a2b3e577386bf68cc96 /pkg/bindings
parent4bd35cb01f03fd90ff304f666e53fcd222ad77f9 (diff)
parente133a06d2f4a3e94bfbd60b647046f2f515c9c24 (diff)
downloadpodman-0c9c3e6714905fbb493e0b634e09b56ae096592e.tar.gz
podman-0c9c3e6714905fbb493e0b634e09b56ae096592e.tar.bz2
podman-0c9c3e6714905fbb493e0b634e09b56ae096592e.zip
Merge pull request #13810 from vrothberg/images-size
images --size
Diffstat (limited to 'pkg/bindings')
-rw-r--r--pkg/bindings/images/types.go2
-rw-r--r--pkg/bindings/images/types_list_options.go15
2 files changed, 17 insertions, 0 deletions
diff --git a/pkg/bindings/images/types.go b/pkg/bindings/images/types.go
index 75cb38a0a..87ec28dc2 100644
--- a/pkg/bindings/images/types.go
+++ b/pkg/bindings/images/types.go
@@ -31,6 +31,8 @@ type ListOptions struct {
All *bool
// filters that can be used to get a more specific list of images
Filters map[string][]string
+ // Compute the size of each image
+ Size *bool
}
//go:generate go run ../generator/generator.go GetOptions
diff --git a/pkg/bindings/images/types_list_options.go b/pkg/bindings/images/types_list_options.go
index f47cd9c75..7f479630f 100644
--- a/pkg/bindings/images/types_list_options.go
+++ b/pkg/bindings/images/types_list_options.go
@@ -46,3 +46,18 @@ func (o *ListOptions) GetFilters() map[string][]string {
}
return o.Filters
}
+
+// WithSize set field Size to given value
+func (o *ListOptions) WithSize(value bool) *ListOptions {
+ o.Size = &value
+ return o
+}
+
+// GetSize returns value of field Size
+func (o *ListOptions) GetSize() bool {
+ if o.Size == nil {
+ var z bool
+ return z
+ }
+ return *o.Size
+}