-
Notifications
You must be signed in to change notification settings - Fork 125
/
account_builder.go
268 lines (241 loc) · 6.54 KB
/
account_builder.go
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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
/*
Copyright (c) 2020 Red Hat, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
// IMPORTANT: This file has been generated automatically, refrain from modifying it manually as all
// your changes will be lost when the file is generated again.
package v1 // github.com/openshift-online/ocm-sdk-go/accountsmgmt/v1
import (
time "time"
)
// AccountBuilder contains the data and logic needed to build 'account' objects.
//
//
type AccountBuilder struct {
bitmap_ uint32
id string
href string
banCode string
banDescription string
createdAt time.Time
email string
firstName string
labels []*LabelBuilder
lastName string
organization *OrganizationBuilder
rhitAccountID string
updatedAt time.Time
username string
banned bool
serviceAccount bool
}
// NewAccount creates a new builder of 'account' objects.
func NewAccount() *AccountBuilder {
return &AccountBuilder{}
}
// Link sets the flag that indicates if this is a link.
func (b *AccountBuilder) Link(value bool) *AccountBuilder {
b.bitmap_ |= 1
return b
}
// ID sets the identifier of the object.
func (b *AccountBuilder) ID(value string) *AccountBuilder {
b.id = value
b.bitmap_ |= 2
return b
}
// HREF sets the link to the object.
func (b *AccountBuilder) HREF(value string) *AccountBuilder {
b.href = value
b.bitmap_ |= 4
return b
}
// Empty returns true if the builder is empty, i.e. no attribute has a value.
func (b *AccountBuilder) Empty() bool {
return b == nil || b.bitmap_&^1 == 0
}
// BanCode sets the value of the 'ban_code' attribute to the given value.
//
//
func (b *AccountBuilder) BanCode(value string) *AccountBuilder {
b.banCode = value
b.bitmap_ |= 8
return b
}
// BanDescription sets the value of the 'ban_description' attribute to the given value.
//
//
func (b *AccountBuilder) BanDescription(value string) *AccountBuilder {
b.banDescription = value
b.bitmap_ |= 16
return b
}
// Banned sets the value of the 'banned' attribute to the given value.
//
//
func (b *AccountBuilder) Banned(value bool) *AccountBuilder {
b.banned = value
b.bitmap_ |= 32
return b
}
// CreatedAt sets the value of the 'created_at' attribute to the given value.
//
//
func (b *AccountBuilder) CreatedAt(value time.Time) *AccountBuilder {
b.createdAt = value
b.bitmap_ |= 64
return b
}
// Email sets the value of the 'email' attribute to the given value.
//
//
func (b *AccountBuilder) Email(value string) *AccountBuilder {
b.email = value
b.bitmap_ |= 128
return b
}
// FirstName sets the value of the 'first_name' attribute to the given value.
//
//
func (b *AccountBuilder) FirstName(value string) *AccountBuilder {
b.firstName = value
b.bitmap_ |= 256
return b
}
// Labels sets the value of the 'labels' attribute to the given values.
//
//
func (b *AccountBuilder) Labels(values ...*LabelBuilder) *AccountBuilder {
b.labels = make([]*LabelBuilder, len(values))
copy(b.labels, values)
b.bitmap_ |= 512
return b
}
// LastName sets the value of the 'last_name' attribute to the given value.
//
//
func (b *AccountBuilder) LastName(value string) *AccountBuilder {
b.lastName = value
b.bitmap_ |= 1024
return b
}
// Organization sets the value of the 'organization' attribute to the given value.
//
//
func (b *AccountBuilder) Organization(value *OrganizationBuilder) *AccountBuilder {
b.organization = value
if value != nil {
b.bitmap_ |= 2048
} else {
b.bitmap_ &^= 2048
}
return b
}
// RhitAccountID sets the value of the 'rhit_account_ID' attribute to the given value.
//
//
func (b *AccountBuilder) RhitAccountID(value string) *AccountBuilder {
b.rhitAccountID = value
b.bitmap_ |= 4096
return b
}
// ServiceAccount sets the value of the 'service_account' attribute to the given value.
//
//
func (b *AccountBuilder) ServiceAccount(value bool) *AccountBuilder {
b.serviceAccount = value
b.bitmap_ |= 8192
return b
}
// UpdatedAt sets the value of the 'updated_at' attribute to the given value.
//
//
func (b *AccountBuilder) UpdatedAt(value time.Time) *AccountBuilder {
b.updatedAt = value
b.bitmap_ |= 16384
return b
}
// Username sets the value of the 'username' attribute to the given value.
//
//
func (b *AccountBuilder) Username(value string) *AccountBuilder {
b.username = value
b.bitmap_ |= 32768
return b
}
// Copy copies the attributes of the given object into this builder, discarding any previous values.
func (b *AccountBuilder) Copy(object *Account) *AccountBuilder {
if object == nil {
return b
}
b.bitmap_ = object.bitmap_
b.id = object.id
b.href = object.href
b.banCode = object.banCode
b.banDescription = object.banDescription
b.banned = object.banned
b.createdAt = object.createdAt
b.email = object.email
b.firstName = object.firstName
if object.labels != nil {
b.labels = make([]*LabelBuilder, len(object.labels))
for i, v := range object.labels {
b.labels[i] = NewLabel().Copy(v)
}
} else {
b.labels = nil
}
b.lastName = object.lastName
if object.organization != nil {
b.organization = NewOrganization().Copy(object.organization)
} else {
b.organization = nil
}
b.rhitAccountID = object.rhitAccountID
b.serviceAccount = object.serviceAccount
b.updatedAt = object.updatedAt
b.username = object.username
return b
}
// Build creates a 'account' object using the configuration stored in the builder.
func (b *AccountBuilder) Build() (object *Account, err error) {
object = new(Account)
object.id = b.id
object.href = b.href
object.bitmap_ = b.bitmap_
object.banCode = b.banCode
object.banDescription = b.banDescription
object.banned = b.banned
object.createdAt = b.createdAt
object.email = b.email
object.firstName = b.firstName
if b.labels != nil {
object.labels = make([]*Label, len(b.labels))
for i, v := range b.labels {
object.labels[i], err = v.Build()
if err != nil {
return
}
}
}
object.lastName = b.lastName
if b.organization != nil {
object.organization, err = b.organization.Build()
if err != nil {
return
}
}
object.rhitAccountID = b.rhitAccountID
object.serviceAccount = b.serviceAccount
object.updatedAt = b.updatedAt
object.username = b.username
return
}