summaryrefslogtreecommitdiff
path: root/pkg/bindings/manifests/types_modify_options.go
blob: 6d75c1e5f46cb859ea7efd1530d098ec93cfe6b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
// Code generated by go generate; DO NOT EDIT.
package manifests

import (
	"net/url"

	"github.com/containers/podman/v4/pkg/bindings/internal/util"
)

// Changed returns true if named field has been set
func (o *ModifyOptions) Changed(fieldName string) bool {
	return util.Changed(o, fieldName)
}

// ToParams formats struct fields to be passed to API service
func (o *ModifyOptions) ToParams() (url.Values, error) {
	return util.ToParams(o)
}

// WithOperation set field Operation to given value
func (o *ModifyOptions) WithOperation(value string) *ModifyOptions {
	o.Operation = &value
	return o
}

// GetOperation returns value of field Operation
func (o *ModifyOptions) GetOperation() string {
	if o.Operation == nil {
		var z string
		return z
	}
	return *o.Operation
}

// WithAll set all when true, operate on all images in a manifest list that may be included in Images
func (o *ModifyOptions) WithAll(value bool) *ModifyOptions {
	o.All = &value
	return o
}

// GetAll returns value of all when true, operate on all images in a manifest list that may be included in Images
func (o *ModifyOptions) GetAll() bool {
	if o.All == nil {
		var z bool
		return z
	}
	return *o.All
}

// WithAnnotations set annotations to add to manifest list
func (o *ModifyOptions) WithAnnotations(value map[string]string) *ModifyOptions {
	o.Annotations = value
	return o
}

// GetAnnotations returns value of annotations to add to manifest list
func (o *ModifyOptions) GetAnnotations() map[string]string {
	if o.Annotations == nil {
		var z map[string]string
		return z
	}
	return o.Annotations
}

// WithArch set arch overrides the architecture for the image
func (o *ModifyOptions) WithArch(value string) *ModifyOptions {
	o.Arch = &value
	return o
}

// GetArch returns value of arch overrides the architecture for the image
func (o *ModifyOptions) GetArch() string {
	if o.Arch == nil {
		var z string
		return z
	}
	return *o.Arch
}

// WithFeatures set feature list for the image
func (o *ModifyOptions) WithFeatures(value []string) *ModifyOptions {
	o.Features = value
	return o
}

// GetFeatures returns value of feature list for the image
func (o *ModifyOptions) GetFeatures() []string {
	if o.Features == nil {
		var z []string
		return z
	}
	return o.Features
}

// WithImages set images is an optional list of images to add/remove to/from manifest list depending on operation
func (o *ModifyOptions) WithImages(value []string) *ModifyOptions {
	o.Images = value
	return o
}

// GetImages returns value of images is an optional list of images to add/remove to/from manifest list depending on operation
func (o *ModifyOptions) GetImages() []string {
	if o.Images == nil {
		var z []string
		return z
	}
	return o.Images
}

// WithOS set oS overrides the operating system for the image
func (o *ModifyOptions) WithOS(value string) *ModifyOptions {
	o.OS = &value
	return o
}

// GetOS returns value of oS overrides the operating system for the image
func (o *ModifyOptions) GetOS() string {
	if o.OS == nil {
		var z string
		return z
	}
	return *o.OS
}

// WithOSFeatures set oS features for the image
func (o *ModifyOptions) WithOSFeatures(value []string) *ModifyOptions {
	o.OSFeatures = value
	return o
}

// GetOSFeatures returns value of oS features for the image
func (o *ModifyOptions) GetOSFeatures() []string {
	if o.OSFeatures == nil {
		var z []string
		return z
	}
	return o.OSFeatures
}

// WithOSVersion set oSVersion overrides the operating system for the image
func (o *ModifyOptions) WithOSVersion(value string) *ModifyOptions {
	o.OSVersion = &value
	return o
}

// GetOSVersion returns value of oSVersion overrides the operating system for the image
func (o *ModifyOptions) GetOSVersion() string {
	if o.OSVersion == nil {
		var z string
		return z
	}
	return *o.OSVersion
}

// WithVariant set variant overrides the operating system variant for the image
func (o *ModifyOptions) WithVariant(value string) *ModifyOptions {
	o.Variant = &value
	return o
}

// GetVariant returns value of variant overrides the operating system variant for the image
func (o *ModifyOptions) GetVariant() string {
	if o.Variant == nil {
		var z string
		return z
	}
	return *o.Variant
}