summaryrefslogtreecommitdiff
path: root/pkg/bindings/images/types_import_options.go
blob: f958fe8b480b74211b3040e0b6fce8d032e4999a (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
// 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 *ImportOptions) Changed(fieldName string) bool {
	return util.Changed(o, fieldName)
}

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

// WithChanges set field Changes to given value
func (o *ImportOptions) WithChanges(value []string) *ImportOptions {
	o.Changes = &value
	return o
}

// GetChanges returns value of field Changes
func (o *ImportOptions) GetChanges() []string {
	if o.Changes == nil {
		var z []string
		return z
	}
	return *o.Changes
}

// WithMessage set field Message to given value
func (o *ImportOptions) WithMessage(value string) *ImportOptions {
	o.Message = &value
	return o
}

// GetMessage returns value of field Message
func (o *ImportOptions) GetMessage() string {
	if o.Message == nil {
		var z string
		return z
	}
	return *o.Message
}

// WithReference set field Reference to given value
func (o *ImportOptions) WithReference(value string) *ImportOptions {
	o.Reference = &value
	return o
}

// GetReference returns value of field Reference
func (o *ImportOptions) GetReference() string {
	if o.Reference == nil {
		var z string
		return z
	}
	return *o.Reference
}

// WithURL set field URL to given value
func (o *ImportOptions) WithURL(value string) *ImportOptions {
	o.URL = &value
	return o
}

// GetURL returns value of field URL
func (o *ImportOptions) GetURL() string {
	if o.URL == nil {
		var z string
		return z
	}
	return *o.URL
}

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

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

// WithArchitecture set field Architecture to given value
func (o *ImportOptions) WithArchitecture(value string) *ImportOptions {
	o.Architecture = &value
	return o
}

// GetArchitecture returns value of field Architecture
func (o *ImportOptions) GetArchitecture() string {
	if o.Architecture == nil {
		var z string
		return z
	}
	return *o.Architecture
}

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

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