summaryrefslogtreecommitdiff
path: root/pkg/bindings/images/types_search_options.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/bindings/images/types_search_options.go')
-rw-r--r--pkg/bindings/images/types_search_options.go75
1 files changed, 33 insertions, 42 deletions
diff --git a/pkg/bindings/images/types_search_options.go b/pkg/bindings/images/types_search_options.go
index a437a0934..e38ef9fb1 100644
--- a/pkg/bindings/images/types_search_options.go
+++ b/pkg/bindings/images/types_search_options.go
@@ -1,3 +1,4 @@
+// Code generated by go generate; DO NOT EDIT.
package images
import (
@@ -6,112 +7,102 @@ import (
"github.com/containers/podman/v3/pkg/bindings/internal/util"
)
-/*
-This file is generated automatically by go generate. Do not edit.
-*/
-
-// Changed
+// Changed returns true if named field has been set
func (o *SearchOptions) Changed(fieldName string) bool {
return util.Changed(o, fieldName)
}
-// ToParams
+// ToParams formats struct fields to be passed to API service
func (o *SearchOptions) ToParams() (url.Values, error) {
return util.ToParams(o)
}
-// WithAuthfile
+// WithAuthfile set field Authfile to given value
func (o *SearchOptions) WithAuthfile(value string) *SearchOptions {
- v := &value
- o.Authfile = v
+ o.Authfile = &value
return o
}
-// GetAuthfile
+// GetAuthfile returns value of field Authfile
func (o *SearchOptions) GetAuthfile() string {
- var authfile string
if o.Authfile == nil {
- return authfile
+ var z string
+ return z
}
return *o.Authfile
}
-// WithFilters
+// WithFilters set field Filters to given value
func (o *SearchOptions) WithFilters(value map[string][]string) *SearchOptions {
- v := value
- o.Filters = v
+ o.Filters = value
return o
}
-// GetFilters
+// GetFilters returns value of field Filters
func (o *SearchOptions) GetFilters() map[string][]string {
- var filters map[string][]string
if o.Filters == nil {
- return filters
+ var z map[string][]string
+ return z
}
return o.Filters
}
-// WithLimit
+// WithLimit set field Limit to given value
func (o *SearchOptions) WithLimit(value int) *SearchOptions {
- v := &value
- o.Limit = v
+ o.Limit = &value
return o
}
-// GetLimit
+// GetLimit returns value of field Limit
func (o *SearchOptions) GetLimit() int {
- var limit int
if o.Limit == nil {
- return limit
+ var z int
+ return z
}
return *o.Limit
}
-// WithNoTrunc
+// WithNoTrunc set field NoTrunc to given value
func (o *SearchOptions) WithNoTrunc(value bool) *SearchOptions {
- v := &value
- o.NoTrunc = v
+ o.NoTrunc = &value
return o
}
-// GetNoTrunc
+// GetNoTrunc returns value of field NoTrunc
func (o *SearchOptions) GetNoTrunc() bool {
- var noTrunc bool
if o.NoTrunc == nil {
- return noTrunc
+ var z bool
+ return z
}
return *o.NoTrunc
}
-// WithSkipTLSVerify
+// WithSkipTLSVerify set field SkipTLSVerify to given value
func (o *SearchOptions) WithSkipTLSVerify(value bool) *SearchOptions {
- v := &value
- o.SkipTLSVerify = v
+ o.SkipTLSVerify = &value
return o
}
-// GetSkipTLSVerify
+// GetSkipTLSVerify returns value of field SkipTLSVerify
func (o *SearchOptions) GetSkipTLSVerify() bool {
- var skipTLSVerify bool
if o.SkipTLSVerify == nil {
- return skipTLSVerify
+ var z bool
+ return z
}
return *o.SkipTLSVerify
}
-// WithListTags
+// WithListTags set field ListTags to given value
func (o *SearchOptions) WithListTags(value bool) *SearchOptions {
- v := &value
- o.ListTags = v
+ o.ListTags = &value
return o
}
-// GetListTags
+// GetListTags returns value of field ListTags
func (o *SearchOptions) GetListTags() bool {
- var listTags bool
if o.ListTags == nil {
- return listTags
+ var z bool
+ return z
}
return *o.ListTags
}