summaryrefslogtreecommitdiff
path: root/pkg/bindings/pods/types_top_options.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/bindings/pods/types_top_options.go')
-rw-r--r--pkg/bindings/pods/types_top_options.go20
1 files changed, 8 insertions, 12 deletions
diff --git a/pkg/bindings/pods/types_top_options.go b/pkg/bindings/pods/types_top_options.go
index ab6501704..2e319afb2 100644
--- a/pkg/bindings/pods/types_top_options.go
+++ b/pkg/bindings/pods/types_top_options.go
@@ -1,3 +1,4 @@
+// Code generated by go generate; DO NOT EDIT.
package pods
import (
@@ -6,32 +7,27 @@ 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 *TopOptions) Changed(fieldName string) bool {
return util.Changed(o, fieldName)
}
-// ToParams
+// ToParams formats struct fields to be passed to API service
func (o *TopOptions) ToParams() (url.Values, error) {
return util.ToParams(o)
}
-// WithDescriptors
+// WithDescriptors set field Descriptors to given value
func (o *TopOptions) WithDescriptors(value []string) *TopOptions {
- v := value
- o.Descriptors = v
+ o.Descriptors = value
return o
}
-// GetDescriptors
+// GetDescriptors returns value of field Descriptors
func (o *TopOptions) GetDescriptors() []string {
- var descriptors []string
if o.Descriptors == nil {
- return descriptors
+ var z []string
+ return z
}
return o.Descriptors
}