summaryrefslogtreecommitdiff
path: root/pkg/bindings/images/types_pull_options.go
blob: 4cd5251858485b4dfe415bc7c750f4dc15385ed6 (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 images

import (
	"net/url"

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

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

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

// WithAllTags set field AllTags to given value
func (o *PullOptions) WithAllTags(value bool) *PullOptions {
	o.AllTags = &value
	return o
}

// GetAllTags returns value of field AllTags
func (o *PullOptions) GetAllTags() bool {
	if o.AllTags == nil {
		var z bool
		return z
	}
	return *o.AllTags
}

// WithArch set field Arch to given value
func (o *PullOptions) WithArch(value string) *PullOptions {
	o.Arch = &value
	return o
}

// GetArch returns value of field Arch
func (o *PullOptions) GetArch() string {
	if o.Arch == nil {
		var z string
		return z
	}
	return *o.Arch
}

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

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

// WithOS set field OS to given value
func (o *PullOptions) WithOS(value string) *PullOptions {
	o.OS = &value
	return o
}

// GetOS returns value of field OS
func (o *PullOptions) GetOS() string {
	if o.OS == nil {
		var z string
		return z
	}
	return *o.OS
}

// WithPolicy set field Policy to given value
func (o *PullOptions) WithPolicy(value string) *PullOptions {
	o.Policy = &value
	return o
}

// GetPolicy returns value of field Policy
func (o *PullOptions) GetPolicy() string {
	if o.Policy == nil {
		var z string
		return z
	}
	return *o.Policy
}

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

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

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

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

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

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

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

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

// WithVariant set field Variant to given value
func (o *PullOptions) WithVariant(value string) *PullOptions {
	o.Variant = &value
	return o
}

// GetVariant returns value of field Variant
func (o *PullOptions) GetVariant() string {
	if o.Variant == nil {
		var z string
		return z
	}
	return *o.Variant
}