This repository has been archived by the owner on Jun 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
ambari_v2_request.go
412 lines (303 loc) · 9.8 KB
/
ambari_v2_request.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
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
// Code generated by go-swagger; DO NOT EDIT.
package models_cloudbreak
// This file was generated by the swagger tool.
// Editing this file might prove futile when you re-run the swagger generate command
import (
"encoding/json"
"strconv"
strfmt "github.com/go-openapi/strfmt"
"github.com/go-openapi/errors"
"github.com/go-openapi/swag"
"github.com/go-openapi/validate"
)
// AmbariV2Request ambari v2 request
// swagger:model AmbariV2Request
type AmbariV2Request struct {
// details of the external Ambari database
AmbariDatabaseDetails *AmbariDatabaseDetails `json:"ambariDatabaseDetails,omitempty"`
// details of the Ambari package repository
AmbariRepoDetailsJSON *AmbariRepoDetails `json:"ambariRepoDetailsJson,omitempty"`
// details of the Ambari stack
AmbariStackDetails *AmbariStackDetails `json:"ambariStackDetails,omitempty"`
// blueprint custom properties
BlueprintCustomProperties string `json:"blueprintCustomProperties,omitempty"`
// blueprint id for the cluster
BlueprintID int64 `json:"blueprintId,omitempty"`
// blueprint inputs in the cluster
// Unique: true
BlueprintInputs []*BlueprintInput `json:"blueprintInputs"`
// blueprint name for the cluster
BlueprintName string `json:"blueprintName,omitempty"`
// config recommendation strategy
ConfigStrategy string `json:"configStrategy,omitempty"`
// cluster can connect to a datalake you can define the parameters here
ConnectedCluster *ConnectedClusterRequest `json:"connectedCluster,omitempty"`
// enable Kerberos security
EnableSecurity *bool `json:"enableSecurity,omitempty"`
// gateway
Gateway *GatewayJSON `json:"gateway,omitempty"`
// kerberos
Kerberos *KerberosRequest `json:"kerberos,omitempty"`
// ambari password
// Required: true
// Max Length: 100
// Min Length: 5
Password *string `json:"password"`
// ambari username
// Required: true
// Max Length: 15
// Min Length: 5
// Pattern: ([a-z][-a-z0-9]*[a-z0-9])
UserName *string `json:"userName"`
// validate blueprint
ValidateBlueprint *bool `json:"validateBlueprint,omitempty"`
}
/* polymorph AmbariV2Request ambariDatabaseDetails false */
/* polymorph AmbariV2Request ambariRepoDetailsJson false */
/* polymorph AmbariV2Request ambariStackDetails false */
/* polymorph AmbariV2Request blueprintCustomProperties false */
/* polymorph AmbariV2Request blueprintId false */
/* polymorph AmbariV2Request blueprintInputs false */
/* polymorph AmbariV2Request blueprintName false */
/* polymorph AmbariV2Request configStrategy false */
/* polymorph AmbariV2Request connectedCluster false */
/* polymorph AmbariV2Request enableSecurity false */
/* polymorph AmbariV2Request gateway false */
/* polymorph AmbariV2Request kerberos false */
/* polymorph AmbariV2Request password false */
/* polymorph AmbariV2Request userName false */
/* polymorph AmbariV2Request validateBlueprint false */
// Validate validates this ambari v2 request
func (m *AmbariV2Request) Validate(formats strfmt.Registry) error {
var res []error
if err := m.validateAmbariDatabaseDetails(formats); err != nil {
// prop
res = append(res, err)
}
if err := m.validateAmbariRepoDetailsJSON(formats); err != nil {
// prop
res = append(res, err)
}
if err := m.validateAmbariStackDetails(formats); err != nil {
// prop
res = append(res, err)
}
if err := m.validateBlueprintInputs(formats); err != nil {
// prop
res = append(res, err)
}
if err := m.validateConfigStrategy(formats); err != nil {
// prop
res = append(res, err)
}
if err := m.validateConnectedCluster(formats); err != nil {
// prop
res = append(res, err)
}
if err := m.validateGateway(formats); err != nil {
// prop
res = append(res, err)
}
if err := m.validateKerberos(formats); err != nil {
// prop
res = append(res, err)
}
if err := m.validatePassword(formats); err != nil {
// prop
res = append(res, err)
}
if err := m.validateUserName(formats); err != nil {
// prop
res = append(res, err)
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}
func (m *AmbariV2Request) validateAmbariDatabaseDetails(formats strfmt.Registry) error {
if swag.IsZero(m.AmbariDatabaseDetails) { // not required
return nil
}
if m.AmbariDatabaseDetails != nil {
if err := m.AmbariDatabaseDetails.Validate(formats); err != nil {
if ve, ok := err.(*errors.Validation); ok {
return ve.ValidateName("ambariDatabaseDetails")
}
return err
}
}
return nil
}
func (m *AmbariV2Request) validateAmbariRepoDetailsJSON(formats strfmt.Registry) error {
if swag.IsZero(m.AmbariRepoDetailsJSON) { // not required
return nil
}
if m.AmbariRepoDetailsJSON != nil {
if err := m.AmbariRepoDetailsJSON.Validate(formats); err != nil {
if ve, ok := err.(*errors.Validation); ok {
return ve.ValidateName("ambariRepoDetailsJson")
}
return err
}
}
return nil
}
func (m *AmbariV2Request) validateAmbariStackDetails(formats strfmt.Registry) error {
if swag.IsZero(m.AmbariStackDetails) { // not required
return nil
}
if m.AmbariStackDetails != nil {
if err := m.AmbariStackDetails.Validate(formats); err != nil {
if ve, ok := err.(*errors.Validation); ok {
return ve.ValidateName("ambariStackDetails")
}
return err
}
}
return nil
}
func (m *AmbariV2Request) validateBlueprintInputs(formats strfmt.Registry) error {
if swag.IsZero(m.BlueprintInputs) { // not required
return nil
}
if err := validate.UniqueItems("blueprintInputs", "body", m.BlueprintInputs); err != nil {
return err
}
for i := 0; i < len(m.BlueprintInputs); i++ {
if swag.IsZero(m.BlueprintInputs[i]) { // not required
continue
}
if m.BlueprintInputs[i] != nil {
if err := m.BlueprintInputs[i].Validate(formats); err != nil {
if ve, ok := err.(*errors.Validation); ok {
return ve.ValidateName("blueprintInputs" + "." + strconv.Itoa(i))
}
return err
}
}
}
return nil
}
var ambariV2RequestTypeConfigStrategyPropEnum []interface{}
func init() {
var res []string
if err := json.Unmarshal([]byte(`["NEVER_APPLY","ONLY_STACK_DEFAULTS_APPLY","ALWAYS_APPLY","ALWAYS_APPLY_DONT_OVERRIDE_CUSTOM_VALUES"]`), &res); err != nil {
panic(err)
}
for _, v := range res {
ambariV2RequestTypeConfigStrategyPropEnum = append(ambariV2RequestTypeConfigStrategyPropEnum, v)
}
}
const (
// AmbariV2RequestConfigStrategyNEVERAPPLY captures enum value "NEVER_APPLY"
AmbariV2RequestConfigStrategyNEVERAPPLY string = "NEVER_APPLY"
// AmbariV2RequestConfigStrategyONLYSTACKDEFAULTSAPPLY captures enum value "ONLY_STACK_DEFAULTS_APPLY"
AmbariV2RequestConfigStrategyONLYSTACKDEFAULTSAPPLY string = "ONLY_STACK_DEFAULTS_APPLY"
// AmbariV2RequestConfigStrategyALWAYSAPPLY captures enum value "ALWAYS_APPLY"
AmbariV2RequestConfigStrategyALWAYSAPPLY string = "ALWAYS_APPLY"
// AmbariV2RequestConfigStrategyALWAYSAPPLYDONTOVERRIDECUSTOMVALUES captures enum value "ALWAYS_APPLY_DONT_OVERRIDE_CUSTOM_VALUES"
AmbariV2RequestConfigStrategyALWAYSAPPLYDONTOVERRIDECUSTOMVALUES string = "ALWAYS_APPLY_DONT_OVERRIDE_CUSTOM_VALUES"
)
// prop value enum
func (m *AmbariV2Request) validateConfigStrategyEnum(path, location string, value string) error {
if err := validate.Enum(path, location, value, ambariV2RequestTypeConfigStrategyPropEnum); err != nil {
return err
}
return nil
}
func (m *AmbariV2Request) validateConfigStrategy(formats strfmt.Registry) error {
if swag.IsZero(m.ConfigStrategy) { // not required
return nil
}
// value enum
if err := m.validateConfigStrategyEnum("configStrategy", "body", m.ConfigStrategy); err != nil {
return err
}
return nil
}
func (m *AmbariV2Request) validateConnectedCluster(formats strfmt.Registry) error {
if swag.IsZero(m.ConnectedCluster) { // not required
return nil
}
if m.ConnectedCluster != nil {
if err := m.ConnectedCluster.Validate(formats); err != nil {
if ve, ok := err.(*errors.Validation); ok {
return ve.ValidateName("connectedCluster")
}
return err
}
}
return nil
}
func (m *AmbariV2Request) validateGateway(formats strfmt.Registry) error {
if swag.IsZero(m.Gateway) { // not required
return nil
}
if m.Gateway != nil {
if err := m.Gateway.Validate(formats); err != nil {
if ve, ok := err.(*errors.Validation); ok {
return ve.ValidateName("gateway")
}
return err
}
}
return nil
}
func (m *AmbariV2Request) validateKerberos(formats strfmt.Registry) error {
if swag.IsZero(m.Kerberos) { // not required
return nil
}
if m.Kerberos != nil {
if err := m.Kerberos.Validate(formats); err != nil {
if ve, ok := err.(*errors.Validation); ok {
return ve.ValidateName("kerberos")
}
return err
}
}
return nil
}
func (m *AmbariV2Request) validatePassword(formats strfmt.Registry) error {
if err := validate.Required("password", "body", m.Password); err != nil {
return err
}
if err := validate.MinLength("password", "body", string(*m.Password), 5); err != nil {
return err
}
if err := validate.MaxLength("password", "body", string(*m.Password), 100); err != nil {
return err
}
return nil
}
func (m *AmbariV2Request) validateUserName(formats strfmt.Registry) error {
if err := validate.Required("userName", "body", m.UserName); err != nil {
return err
}
if err := validate.MinLength("userName", "body", string(*m.UserName), 5); err != nil {
return err
}
if err := validate.MaxLength("userName", "body", string(*m.UserName), 15); err != nil {
return err
}
if err := validate.Pattern("userName", "body", string(*m.UserName), `([a-z][-a-z0-9]*[a-z0-9])`); err != nil {
return err
}
return nil
}
// MarshalBinary interface implementation
func (m *AmbariV2Request) MarshalBinary() ([]byte, error) {
if m == nil {
return nil, nil
}
return swag.WriteJSON(m)
}
// UnmarshalBinary interface implementation
func (m *AmbariV2Request) UnmarshalBinary(b []byte) error {
var res AmbariV2Request
if err := swag.ReadJSON(b, &res); err != nil {
return err
}
*m = res
return nil
}