-
Notifications
You must be signed in to change notification settings - Fork 124
/
role_binding_builder.go
244 lines (219 loc) · 6.14 KB
/
role_binding_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
/*
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"
)
// RoleBindingBuilder contains the data and logic needed to build 'role_binding' objects.
//
//
type RoleBindingBuilder struct {
id *string
href *string
link bool
account *AccountBuilder
accountID *string
configManaged *bool
createdAt *time.Time
organization *OrganizationBuilder
organizationID *string
role *RoleBuilder
roleID *string
subscription *SubscriptionBuilder
subscriptionID *string
type_ *string
updatedAt *time.Time
}
// NewRoleBinding creates a new builder of 'role_binding' objects.
func NewRoleBinding() *RoleBindingBuilder {
return new(RoleBindingBuilder)
}
// ID sets the identifier of the object.
func (b *RoleBindingBuilder) ID(value string) *RoleBindingBuilder {
b.id = &value
return b
}
// HREF sets the link to the object.
func (b *RoleBindingBuilder) HREF(value string) *RoleBindingBuilder {
b.href = &value
return b
}
// Link sets the flag that indicates if this is a link.
func (b *RoleBindingBuilder) Link(value bool) *RoleBindingBuilder {
b.link = value
return b
}
// Account sets the value of the 'account' attribute to the given value.
//
//
func (b *RoleBindingBuilder) Account(value *AccountBuilder) *RoleBindingBuilder {
b.account = value
return b
}
// AccountID sets the value of the 'account_ID' attribute to the given value.
//
//
func (b *RoleBindingBuilder) AccountID(value string) *RoleBindingBuilder {
b.accountID = &value
return b
}
// ConfigManaged sets the value of the 'config_managed' attribute to the given value.
//
//
func (b *RoleBindingBuilder) ConfigManaged(value bool) *RoleBindingBuilder {
b.configManaged = &value
return b
}
// CreatedAt sets the value of the 'created_at' attribute to the given value.
//
//
func (b *RoleBindingBuilder) CreatedAt(value time.Time) *RoleBindingBuilder {
b.createdAt = &value
return b
}
// Organization sets the value of the 'organization' attribute to the given value.
//
//
func (b *RoleBindingBuilder) Organization(value *OrganizationBuilder) *RoleBindingBuilder {
b.organization = value
return b
}
// OrganizationID sets the value of the 'organization_ID' attribute to the given value.
//
//
func (b *RoleBindingBuilder) OrganizationID(value string) *RoleBindingBuilder {
b.organizationID = &value
return b
}
// Role sets the value of the 'role' attribute to the given value.
//
//
func (b *RoleBindingBuilder) Role(value *RoleBuilder) *RoleBindingBuilder {
b.role = value
return b
}
// RoleID sets the value of the 'role_ID' attribute to the given value.
//
//
func (b *RoleBindingBuilder) RoleID(value string) *RoleBindingBuilder {
b.roleID = &value
return b
}
// Subscription sets the value of the 'subscription' attribute to the given value.
//
//
func (b *RoleBindingBuilder) Subscription(value *SubscriptionBuilder) *RoleBindingBuilder {
b.subscription = value
return b
}
// SubscriptionID sets the value of the 'subscription_ID' attribute to the given value.
//
//
func (b *RoleBindingBuilder) SubscriptionID(value string) *RoleBindingBuilder {
b.subscriptionID = &value
return b
}
// Type sets the value of the 'type' attribute to the given value.
//
//
func (b *RoleBindingBuilder) Type(value string) *RoleBindingBuilder {
b.type_ = &value
return b
}
// UpdatedAt sets the value of the 'updated_at' attribute to the given value.
//
//
func (b *RoleBindingBuilder) UpdatedAt(value time.Time) *RoleBindingBuilder {
b.updatedAt = &value
return b
}
// Copy copies the attributes of the given object into this builder, discarding any previous values.
func (b *RoleBindingBuilder) Copy(object *RoleBinding) *RoleBindingBuilder {
if object == nil {
return b
}
b.id = object.id
b.href = object.href
b.link = object.link
if object.account != nil {
b.account = NewAccount().Copy(object.account)
} else {
b.account = nil
}
b.accountID = object.accountID
b.configManaged = object.configManaged
b.createdAt = object.createdAt
if object.organization != nil {
b.organization = NewOrganization().Copy(object.organization)
} else {
b.organization = nil
}
b.organizationID = object.organizationID
if object.role != nil {
b.role = NewRole().Copy(object.role)
} else {
b.role = nil
}
b.roleID = object.roleID
if object.subscription != nil {
b.subscription = NewSubscription().Copy(object.subscription)
} else {
b.subscription = nil
}
b.subscriptionID = object.subscriptionID
b.type_ = object.type_
b.updatedAt = object.updatedAt
return b
}
// Build creates a 'role_binding' object using the configuration stored in the builder.
func (b *RoleBindingBuilder) Build() (object *RoleBinding, err error) {
object = new(RoleBinding)
object.id = b.id
object.href = b.href
object.link = b.link
if b.account != nil {
object.account, err = b.account.Build()
if err != nil {
return
}
}
object.accountID = b.accountID
object.configManaged = b.configManaged
object.createdAt = b.createdAt
if b.organization != nil {
object.organization, err = b.organization.Build()
if err != nil {
return
}
}
object.organizationID = b.organizationID
if b.role != nil {
object.role, err = b.role.Build()
if err != nil {
return
}
}
object.roleID = b.roleID
if b.subscription != nil {
object.subscription, err = b.subscription.Build()
if err != nil {
return
}
}
object.subscriptionID = b.subscriptionID
object.type_ = b.type_
object.updatedAt = b.updatedAt
return
}