summaryrefslogtreecommitdiff
path: root/pkg/bindings/images/types_import_options.go
diff options
context:
space:
mode:
authorJhon Honce <jhonce@redhat.com>2021-09-13 14:29:22 -0700
committerJhon Honce <jhonce@redhat.com>2021-09-14 07:47:24 -0700
commitd7256be807890892c988cc7d270e3d1bf951397c (patch)
tree53fadc1842f3de6a7c62ab97c8e16f15b0dc4484 /pkg/bindings/images/types_import_options.go
parentb603c7a4b91d30b33ce987740156f46804f24074 (diff)
downloadpodman-d7256be807890892c988cc7d270e3d1bf951397c.tar.gz
podman-d7256be807890892c988cc7d270e3d1bf951397c.tar.bz2
podman-d7256be807890892c988cc7d270e3d1bf951397c.zip
Enhance bindings for IDE hints
* Follow https://pkg.go.dev/cmd/go#hdr-Generate_Go_files_by_processing_source for leading comment * Add godoc strings for all exposed methods for IDE support * Copy field godoc strings into generated code as function godoc string * Remove unused/unnecessary fields from generator.go structures * Cleanup code regarding template usage Signed-off-by: Jhon Honce <jhonce@redhat.com>
Diffstat (limited to 'pkg/bindings/images/types_import_options.go')
-rw-r--r--pkg/bindings/images/types_import_options.go53
1 files changed, 23 insertions, 30 deletions
diff --git a/pkg/bindings/images/types_import_options.go b/pkg/bindings/images/types_import_options.go
index 333e841e6..aed567934 100644
--- a/pkg/bindings/images/types_import_options.go
+++ b/pkg/bindings/images/types_import_options.go
@@ -1,3 +1,4 @@
+// Code generated by go generate; DO NOT EDIT.
package images
import (
@@ -6,80 +7,72 @@ 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 *ImportOptions) Changed(fieldName string) bool {
return util.Changed(o, fieldName)
}
-// ToParams
+// ToParams formats struct fields to be passed to API service
func (o *ImportOptions) ToParams() (url.Values, error) {
return util.ToParams(o)
}
-// WithChanges
+// WithChanges set field Changes to given value
func (o *ImportOptions) WithChanges(value []string) *ImportOptions {
- v := &value
- o.Changes = v
+ o.Changes = &value
return o
}
-// GetChanges
+// GetChanges returns value of field Changes
func (o *ImportOptions) GetChanges() []string {
- var changes []string
if o.Changes == nil {
- return changes
+ var z []string
+ return z
}
return *o.Changes
}
-// WithMessage
+// WithMessage set field Message to given value
func (o *ImportOptions) WithMessage(value string) *ImportOptions {
- v := &value
- o.Message = v
+ o.Message = &value
return o
}
-// GetMessage
+// GetMessage returns value of field Message
func (o *ImportOptions) GetMessage() string {
- var message string
if o.Message == nil {
- return message
+ var z string
+ return z
}
return *o.Message
}
-// WithReference
+// WithReference set field Reference to given value
func (o *ImportOptions) WithReference(value string) *ImportOptions {
- v := &value
- o.Reference = v
+ o.Reference = &value
return o
}
-// GetReference
+// GetReference returns value of field Reference
func (o *ImportOptions) GetReference() string {
- var reference string
if o.Reference == nil {
- return reference
+ var z string
+ return z
}
return *o.Reference
}
-// WithURL
+// WithURL set field URL to given value
func (o *ImportOptions) WithURL(value string) *ImportOptions {
- v := &value
- o.URL = v
+ o.URL = &value
return o
}
-// GetURL
+// GetURL returns value of field URL
func (o *ImportOptions) GetURL() string {
- var uRL string
if o.URL == nil {
- return uRL
+ var z string
+ return z
}
return *o.URL
}