summaryrefslogtreecommitdiff
path: root/pkg/bindings/images/types_push_options.go
blob: 817d873f8c5541923fde9fce58764cb5b57f61f1 (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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
// Code generated by go generate; DO NOT EDIT.
package images

import (
	"io"
	"net/url"

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

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

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

// WithAll set field All to given value
func (o *PushOptions) WithAll(value bool) *PushOptions {
	o.All = &value
	return o
}

// GetAll returns value of field All
func (o *PushOptions) GetAll() bool {
	if o.All == nil {
		var z bool
		return z
	}
	return *o.All
}

// WithAuthfile set field Authfile to given value
func (o *PushOptions) WithAuthfile(value string) *PushOptions {
	o.Authfile = &value
	return o
}

// GetAuthfile returns value of field Authfile
func (o *PushOptions) GetAuthfile() string {
	if o.Authfile == nil {
		var z string
		return z
	}
	return *o.Authfile
}

// WithCompress set field Compress to given value
func (o *PushOptions) WithCompress(value bool) *PushOptions {
	o.Compress = &value
	return o
}

// GetCompress returns value of field Compress
func (o *PushOptions) GetCompress() bool {
	if o.Compress == nil {
		var z bool
		return z
	}
	return *o.Compress
}

// WithCompressionFormat set field CompressionFormat to given value
func (o *PushOptions) WithCompressionFormat(value string) *PushOptions {
	o.CompressionFormat = &value
	return o
}

// GetCompressionFormat returns value of field CompressionFormat
func (o *PushOptions) GetCompressionFormat() string {
	if o.CompressionFormat == nil {
		var z string
		return z
	}
	return *o.CompressionFormat
}

// WithFormat set field Format to given value
func (o *PushOptions) WithFormat(value string) *PushOptions {
	o.Format = &value
	return o
}

// GetFormat returns value of field Format
func (o *PushOptions) GetFormat() string {
	if o.Format == nil {
		var z string
		return z
	}
	return *o.Format
}

// WithPassword set field Password to given value
func (o *PushOptions) WithPassword(value string) *PushOptions {
	o.Password = &value
	return o
}

// GetPassword returns value of field Password
func (o *PushOptions) GetPassword() string {
	if o.Password == nil {
		var z string
		return z
	}
	return *o.Password
}

// WithProgressWriter set field ProgressWriter to given value
func (o *PushOptions) WithProgressWriter(value io.Writer) *PushOptions {
	o.ProgressWriter = &value
	return o
}

// GetProgressWriter returns value of field ProgressWriter
func (o *PushOptions) GetProgressWriter() io.Writer {
	if o.ProgressWriter == nil {
		var z io.Writer
		return z
	}
	return *o.ProgressWriter
}

// WithSkipTLSVerify set field SkipTLSVerify to given value
func (o *PushOptions) WithSkipTLSVerify(value bool) *PushOptions {
	o.SkipTLSVerify = &value
	return o
}

// GetSkipTLSVerify returns value of field SkipTLSVerify
func (o *PushOptions) GetSkipTLSVerify() bool {
	if o.SkipTLSVerify == nil {
		var z bool
		return z
	}
	return *o.SkipTLSVerify
}

// WithRemoveSignatures set field RemoveSignatures to given value
func (o *PushOptions) WithRemoveSignatures(value bool) *PushOptions {
	o.RemoveSignatures = &value
	return o
}

// GetRemoveSignatures returns value of field RemoveSignatures
func (o *PushOptions) GetRemoveSignatures() bool {
	if o.RemoveSignatures == nil {
		var z bool
		return z
	}
	return *o.RemoveSignatures
}

// WithUsername set field Username to given value
func (o *PushOptions) WithUsername(value string) *PushOptions {
	o.Username = &value
	return o
}

// GetUsername returns value of field Username
func (o *PushOptions) GetUsername() string {
	if o.Username == nil {
		var z string
		return z
	}
	return *o.Username
}

// WithQuiet set field Quiet to given value
func (o *PushOptions) WithQuiet(value bool) *PushOptions {
	o.Quiet = &value
	return o
}

// GetQuiet returns value of field Quiet
func (o *PushOptions) GetQuiet() bool {
	if o.Quiet == nil {
		var z bool
		return z
	}
	return *o.Quiet
}