-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathmodel_credentials.go
More file actions
488 lines (402 loc) · 20.3 KB
/
Copy pathmodel_credentials.go
File metadata and controls
488 lines (402 loc) · 20.3 KB
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
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
/*
STACKIT MariaDB API
The STACKIT MariaDB API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects.
API version: 2.0
*/
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
package mariadb
import (
"encoding/json"
)
// checks if the Credentials type satisfies the MappedNullable interface at compile time
var _ MappedNullable = &Credentials{}
/*
types and functions for host
*/
// isNotNullableString
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type CredentialsGetHostAttributeType = *string
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func getCredentialsGetHostAttributeTypeOk(arg CredentialsGetHostAttributeType) (ret CredentialsGetHostRetType, ok bool) {
if arg == nil {
return ret, false
}
return *arg, true
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func setCredentialsGetHostAttributeType(arg *CredentialsGetHostAttributeType, val CredentialsGetHostRetType) {
*arg = &val
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type CredentialsGetHostArgType = string
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type CredentialsGetHostRetType = string
/*
types and functions for hosts
*/
// isArray
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type CredentialsGetHostsAttributeType = *[]string
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type CredentialsGetHostsArgType = []string
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type CredentialsGetHostsRetType = []string
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func getCredentialsGetHostsAttributeTypeOk(arg CredentialsGetHostsAttributeType) (ret CredentialsGetHostsRetType, ok bool) {
if arg == nil {
return ret, false
}
return *arg, true
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func setCredentialsGetHostsAttributeType(arg *CredentialsGetHostsAttributeType, val CredentialsGetHostsRetType) {
*arg = &val
}
/*
types and functions for name
*/
// isNotNullableString
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type CredentialsGetNameAttributeType = *string
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func getCredentialsGetNameAttributeTypeOk(arg CredentialsGetNameAttributeType) (ret CredentialsGetNameRetType, ok bool) {
if arg == nil {
return ret, false
}
return *arg, true
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func setCredentialsGetNameAttributeType(arg *CredentialsGetNameAttributeType, val CredentialsGetNameRetType) {
*arg = &val
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type CredentialsGetNameArgType = string
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type CredentialsGetNameRetType = string
/*
types and functions for password
*/
// isNotNullableString
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type CredentialsGetPasswordAttributeType = *string
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func getCredentialsGetPasswordAttributeTypeOk(arg CredentialsGetPasswordAttributeType) (ret CredentialsGetPasswordRetType, ok bool) {
if arg == nil {
return ret, false
}
return *arg, true
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func setCredentialsGetPasswordAttributeType(arg *CredentialsGetPasswordAttributeType, val CredentialsGetPasswordRetType) {
*arg = &val
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type CredentialsGetPasswordArgType = string
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type CredentialsGetPasswordRetType = string
/*
types and functions for port
*/
// isInteger
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type CredentialsGetPortAttributeType = *int64
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type CredentialsGetPortArgType = int64
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type CredentialsGetPortRetType = int64
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func getCredentialsGetPortAttributeTypeOk(arg CredentialsGetPortAttributeType) (ret CredentialsGetPortRetType, ok bool) {
if arg == nil {
return ret, false
}
return *arg, true
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func setCredentialsGetPortAttributeType(arg *CredentialsGetPortAttributeType, val CredentialsGetPortRetType) {
*arg = &val
}
/*
types and functions for uri
*/
// isNotNullableString
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type CredentialsGetUriAttributeType = *string
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func getCredentialsGetUriAttributeTypeOk(arg CredentialsGetUriAttributeType) (ret CredentialsGetUriRetType, ok bool) {
if arg == nil {
return ret, false
}
return *arg, true
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func setCredentialsGetUriAttributeType(arg *CredentialsGetUriAttributeType, val CredentialsGetUriRetType) {
*arg = &val
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type CredentialsGetUriArgType = string
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type CredentialsGetUriRetType = string
/*
types and functions for username
*/
// isNotNullableString
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type CredentialsGetUsernameAttributeType = *string
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func getCredentialsGetUsernameAttributeTypeOk(arg CredentialsGetUsernameAttributeType) (ret CredentialsGetUsernameRetType, ok bool) {
if arg == nil {
return ret, false
}
return *arg, true
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func setCredentialsGetUsernameAttributeType(arg *CredentialsGetUsernameAttributeType, val CredentialsGetUsernameRetType) {
*arg = &val
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type CredentialsGetUsernameArgType = string
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type CredentialsGetUsernameRetType = string
// Credentials struct for Credentials
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type Credentials struct {
// REQUIRED
Host CredentialsGetHostAttributeType `json:"host" required:"true"`
Hosts CredentialsGetHostsAttributeType `json:"hosts,omitempty"`
Name CredentialsGetNameAttributeType `json:"name,omitempty"`
// REQUIRED
Password CredentialsGetPasswordAttributeType `json:"password" required:"true"`
// Can be cast to int32 without loss of precision.
Port CredentialsGetPortAttributeType `json:"port,omitempty"`
Uri CredentialsGetUriAttributeType `json:"uri,omitempty"`
// REQUIRED
Username CredentialsGetUsernameAttributeType `json:"username" required:"true"`
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type _Credentials Credentials
// NewCredentials instantiates a new Credentials object
// This constructor will assign default values to properties that have it defined,
// and makes sure properties required by API are set, but the set of arguments
// will change when the set of required properties is changed
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func NewCredentials(host CredentialsGetHostArgType, password CredentialsGetPasswordArgType, username CredentialsGetUsernameArgType) *Credentials {
this := Credentials{}
setCredentialsGetHostAttributeType(&this.Host, host)
setCredentialsGetPasswordAttributeType(&this.Password, password)
setCredentialsGetUsernameAttributeType(&this.Username, username)
return &this
}
// NewCredentialsWithDefaults instantiates a new Credentials object
// This constructor will only assign default values to properties that have it defined,
// but it doesn't guarantee that properties required by API are set
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func NewCredentialsWithDefaults() *Credentials {
this := Credentials{}
return &this
}
// GetHost returns the Host field value
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (o *Credentials) GetHost() (ret CredentialsGetHostRetType) {
ret, _ = o.GetHostOk()
return ret
}
// GetHostOk returns a tuple with the Host field value
// and a boolean to check if the value has been set.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (o *Credentials) GetHostOk() (ret CredentialsGetHostRetType, ok bool) {
return getCredentialsGetHostAttributeTypeOk(o.Host)
}
// SetHost sets field value
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (o *Credentials) SetHost(v CredentialsGetHostRetType) {
setCredentialsGetHostAttributeType(&o.Host, v)
}
// GetHosts returns the Hosts field value if set, zero value otherwise.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (o *Credentials) GetHosts() (res CredentialsGetHostsRetType) {
res, _ = o.GetHostsOk()
return
}
// GetHostsOk returns a tuple with the Hosts field value if set, nil otherwise
// and a boolean to check if the value has been set.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (o *Credentials) GetHostsOk() (ret CredentialsGetHostsRetType, ok bool) {
return getCredentialsGetHostsAttributeTypeOk(o.Hosts)
}
// HasHosts returns a boolean if a field has been set.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (o *Credentials) HasHosts() bool {
_, ok := o.GetHostsOk()
return ok
}
// SetHosts gets a reference to the given []string and assigns it to the Hosts field.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (o *Credentials) SetHosts(v CredentialsGetHostsRetType) {
setCredentialsGetHostsAttributeType(&o.Hosts, v)
}
// GetName returns the Name field value if set, zero value otherwise.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (o *Credentials) GetName() (res CredentialsGetNameRetType) {
res, _ = o.GetNameOk()
return
}
// GetNameOk returns a tuple with the Name field value if set, nil otherwise
// and a boolean to check if the value has been set.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (o *Credentials) GetNameOk() (ret CredentialsGetNameRetType, ok bool) {
return getCredentialsGetNameAttributeTypeOk(o.Name)
}
// HasName returns a boolean if a field has been set.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (o *Credentials) HasName() bool {
_, ok := o.GetNameOk()
return ok
}
// SetName gets a reference to the given string and assigns it to the Name field.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (o *Credentials) SetName(v CredentialsGetNameRetType) {
setCredentialsGetNameAttributeType(&o.Name, v)
}
// GetPassword returns the Password field value
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (o *Credentials) GetPassword() (ret CredentialsGetPasswordRetType) {
ret, _ = o.GetPasswordOk()
return ret
}
// GetPasswordOk returns a tuple with the Password field value
// and a boolean to check if the value has been set.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (o *Credentials) GetPasswordOk() (ret CredentialsGetPasswordRetType, ok bool) {
return getCredentialsGetPasswordAttributeTypeOk(o.Password)
}
// SetPassword sets field value
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (o *Credentials) SetPassword(v CredentialsGetPasswordRetType) {
setCredentialsGetPasswordAttributeType(&o.Password, v)
}
// GetPort returns the Port field value if set, zero value otherwise.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (o *Credentials) GetPort() (res CredentialsGetPortRetType) {
res, _ = o.GetPortOk()
return
}
// GetPortOk returns a tuple with the Port field value if set, nil otherwise
// and a boolean to check if the value has been set.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (o *Credentials) GetPortOk() (ret CredentialsGetPortRetType, ok bool) {
return getCredentialsGetPortAttributeTypeOk(o.Port)
}
// HasPort returns a boolean if a field has been set.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (o *Credentials) HasPort() bool {
_, ok := o.GetPortOk()
return ok
}
// SetPort gets a reference to the given int64 and assigns it to the Port field.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (o *Credentials) SetPort(v CredentialsGetPortRetType) {
setCredentialsGetPortAttributeType(&o.Port, v)
}
// GetUri returns the Uri field value if set, zero value otherwise.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (o *Credentials) GetUri() (res CredentialsGetUriRetType) {
res, _ = o.GetUriOk()
return
}
// GetUriOk returns a tuple with the Uri field value if set, nil otherwise
// and a boolean to check if the value has been set.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (o *Credentials) GetUriOk() (ret CredentialsGetUriRetType, ok bool) {
return getCredentialsGetUriAttributeTypeOk(o.Uri)
}
// HasUri returns a boolean if a field has been set.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (o *Credentials) HasUri() bool {
_, ok := o.GetUriOk()
return ok
}
// SetUri gets a reference to the given string and assigns it to the Uri field.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (o *Credentials) SetUri(v CredentialsGetUriRetType) {
setCredentialsGetUriAttributeType(&o.Uri, v)
}
// GetUsername returns the Username field value
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (o *Credentials) GetUsername() (ret CredentialsGetUsernameRetType) {
ret, _ = o.GetUsernameOk()
return ret
}
// GetUsernameOk returns a tuple with the Username field value
// and a boolean to check if the value has been set.
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (o *Credentials) GetUsernameOk() (ret CredentialsGetUsernameRetType, ok bool) {
return getCredentialsGetUsernameAttributeTypeOk(o.Username)
}
// SetUsername sets field value
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (o *Credentials) SetUsername(v CredentialsGetUsernameRetType) {
setCredentialsGetUsernameAttributeType(&o.Username, v)
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (o Credentials) ToMap() (map[string]interface{}, error) {
toSerialize := map[string]interface{}{}
if val, ok := getCredentialsGetHostAttributeTypeOk(o.Host); ok {
toSerialize["Host"] = val
}
if val, ok := getCredentialsGetHostsAttributeTypeOk(o.Hosts); ok {
toSerialize["Hosts"] = val
}
if val, ok := getCredentialsGetNameAttributeTypeOk(o.Name); ok {
toSerialize["Name"] = val
}
if val, ok := getCredentialsGetPasswordAttributeTypeOk(o.Password); ok {
toSerialize["Password"] = val
}
if val, ok := getCredentialsGetPortAttributeTypeOk(o.Port); ok {
toSerialize["Port"] = val
}
if val, ok := getCredentialsGetUriAttributeTypeOk(o.Uri); ok {
toSerialize["Uri"] = val
}
if val, ok := getCredentialsGetUsernameAttributeTypeOk(o.Username); ok {
toSerialize["Username"] = val
}
return toSerialize, nil
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
type NullableCredentials struct {
value *Credentials
isSet bool
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (v NullableCredentials) Get() *Credentials {
return v.value
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (v *NullableCredentials) Set(val *Credentials) {
v.value = val
v.isSet = true
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (v NullableCredentials) IsSet() bool {
return v.isSet
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (v *NullableCredentials) Unset() {
v.value = nil
v.isSet = false
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func NewNullableCredentials(val *Credentials) *NullableCredentials {
return &NullableCredentials{value: val, isSet: true}
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (v NullableCredentials) MarshalJSON() ([]byte, error) {
return json.Marshal(v.value)
}
// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
func (v *NullableCredentials) UnmarshalJSON(src []byte) error {
v.isSet = true
return json.Unmarshal(src, &v.value)
}