-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathmodel_credentials.go
More file actions
405 lines (328 loc) · 11.7 KB
/
model_credentials.go
File metadata and controls
405 lines (328 loc) · 11.7 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
/*
STACKIT Opensearch API
The STACKIT Opensearch API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects.
API version: 1.1.0
*/
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
package opensearch
import (
"encoding/json"
)
// checks if the Credentials type satisfies the MappedNullable interface at compile time
var _ MappedNullable = &Credentials{}
/*
types and functions for host
*/
// isNotNullableString
type CredentialsGetHostAttributeType = *string
func getCredentialsGetHostAttributeTypeOk(arg CredentialsGetHostAttributeType) (ret CredentialsGetHostRetType, ok bool) {
if arg == nil {
return ret, false
}
return *arg, true
}
func setCredentialsGetHostAttributeType(arg *CredentialsGetHostAttributeType, val CredentialsGetHostRetType) {
*arg = &val
}
type CredentialsGetHostArgType = string
type CredentialsGetHostRetType = string
/*
types and functions for hosts
*/
// isArray
type CredentialsGetHostsAttributeType = *[]string
type CredentialsGetHostsArgType = []string
type CredentialsGetHostsRetType = []string
func getCredentialsGetHostsAttributeTypeOk(arg CredentialsGetHostsAttributeType) (ret CredentialsGetHostsRetType, ok bool) {
if arg == nil {
return ret, false
}
return *arg, true
}
func setCredentialsGetHostsAttributeType(arg *CredentialsGetHostsAttributeType, val CredentialsGetHostsRetType) {
*arg = &val
}
/*
types and functions for password
*/
// isNotNullableString
type CredentialsGetPasswordAttributeType = *string
func getCredentialsGetPasswordAttributeTypeOk(arg CredentialsGetPasswordAttributeType) (ret CredentialsGetPasswordRetType, ok bool) {
if arg == nil {
return ret, false
}
return *arg, true
}
func setCredentialsGetPasswordAttributeType(arg *CredentialsGetPasswordAttributeType, val CredentialsGetPasswordRetType) {
*arg = &val
}
type CredentialsGetPasswordArgType = string
type CredentialsGetPasswordRetType = string
/*
types and functions for port
*/
// isInteger
type CredentialsGetPortAttributeType = *int64
type CredentialsGetPortArgType = int64
type CredentialsGetPortRetType = int64
func getCredentialsGetPortAttributeTypeOk(arg CredentialsGetPortAttributeType) (ret CredentialsGetPortRetType, ok bool) {
if arg == nil {
return ret, false
}
return *arg, true
}
func setCredentialsGetPortAttributeType(arg *CredentialsGetPortAttributeType, val CredentialsGetPortRetType) {
*arg = &val
}
/*
types and functions for scheme
*/
// isNotNullableString
type CredentialsGetSchemeAttributeType = *string
func getCredentialsGetSchemeAttributeTypeOk(arg CredentialsGetSchemeAttributeType) (ret CredentialsGetSchemeRetType, ok bool) {
if arg == nil {
return ret, false
}
return *arg, true
}
func setCredentialsGetSchemeAttributeType(arg *CredentialsGetSchemeAttributeType, val CredentialsGetSchemeRetType) {
*arg = &val
}
type CredentialsGetSchemeArgType = string
type CredentialsGetSchemeRetType = string
/*
types and functions for uri
*/
// isNotNullableString
type CredentialsGetUriAttributeType = *string
func getCredentialsGetUriAttributeTypeOk(arg CredentialsGetUriAttributeType) (ret CredentialsGetUriRetType, ok bool) {
if arg == nil {
return ret, false
}
return *arg, true
}
func setCredentialsGetUriAttributeType(arg *CredentialsGetUriAttributeType, val CredentialsGetUriRetType) {
*arg = &val
}
type CredentialsGetUriArgType = string
type CredentialsGetUriRetType = string
/*
types and functions for username
*/
// isNotNullableString
type CredentialsGetUsernameAttributeType = *string
func getCredentialsGetUsernameAttributeTypeOk(arg CredentialsGetUsernameAttributeType) (ret CredentialsGetUsernameRetType, ok bool) {
if arg == nil {
return ret, false
}
return *arg, true
}
func setCredentialsGetUsernameAttributeType(arg *CredentialsGetUsernameAttributeType, val CredentialsGetUsernameRetType) {
*arg = &val
}
type CredentialsGetUsernameArgType = string
type CredentialsGetUsernameRetType = string
// Credentials struct for Credentials
type Credentials struct {
// REQUIRED
Host CredentialsGetHostAttributeType `json:"host" required:"true"`
Hosts CredentialsGetHostsAttributeType `json:"hosts,omitempty"`
// REQUIRED
Password CredentialsGetPasswordAttributeType `json:"password" required:"true"`
// Can be cast to int32 without loss of precision.
Port CredentialsGetPortAttributeType `json:"port,omitempty"`
Scheme CredentialsGetSchemeAttributeType `json:"scheme,omitempty"`
Uri CredentialsGetUriAttributeType `json:"uri,omitempty"`
// REQUIRED
Username CredentialsGetUsernameAttributeType `json:"username" required:"true"`
}
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
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
func NewCredentialsWithDefaults() *Credentials {
this := Credentials{}
return &this
}
// GetHost returns the Host field value
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.
func (o *Credentials) GetHostOk() (ret CredentialsGetHostRetType, ok bool) {
return getCredentialsGetHostAttributeTypeOk(o.Host)
}
// SetHost sets field value
func (o *Credentials) SetHost(v CredentialsGetHostRetType) {
setCredentialsGetHostAttributeType(&o.Host, v)
}
// GetHosts returns the Hosts field value if set, zero value otherwise.
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.
func (o *Credentials) GetHostsOk() (ret CredentialsGetHostsRetType, ok bool) {
return getCredentialsGetHostsAttributeTypeOk(o.Hosts)
}
// HasHosts returns a boolean if a field has been set.
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.
func (o *Credentials) SetHosts(v CredentialsGetHostsRetType) {
setCredentialsGetHostsAttributeType(&o.Hosts, v)
}
// GetPassword returns the Password field value
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.
func (o *Credentials) GetPasswordOk() (ret CredentialsGetPasswordRetType, ok bool) {
return getCredentialsGetPasswordAttributeTypeOk(o.Password)
}
// SetPassword sets field value
func (o *Credentials) SetPassword(v CredentialsGetPasswordRetType) {
setCredentialsGetPasswordAttributeType(&o.Password, v)
}
// GetPort returns the Port field value if set, zero value otherwise.
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.
func (o *Credentials) GetPortOk() (ret CredentialsGetPortRetType, ok bool) {
return getCredentialsGetPortAttributeTypeOk(o.Port)
}
// HasPort returns a boolean if a field has been set.
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.
func (o *Credentials) SetPort(v CredentialsGetPortRetType) {
setCredentialsGetPortAttributeType(&o.Port, v)
}
// GetScheme returns the Scheme field value if set, zero value otherwise.
func (o *Credentials) GetScheme() (res CredentialsGetSchemeRetType) {
res, _ = o.GetSchemeOk()
return
}
// GetSchemeOk returns a tuple with the Scheme field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *Credentials) GetSchemeOk() (ret CredentialsGetSchemeRetType, ok bool) {
return getCredentialsGetSchemeAttributeTypeOk(o.Scheme)
}
// HasScheme returns a boolean if a field has been set.
func (o *Credentials) HasScheme() bool {
_, ok := o.GetSchemeOk()
return ok
}
// SetScheme gets a reference to the given string and assigns it to the Scheme field.
func (o *Credentials) SetScheme(v CredentialsGetSchemeRetType) {
setCredentialsGetSchemeAttributeType(&o.Scheme, v)
}
// GetUri returns the Uri field value if set, zero value otherwise.
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.
func (o *Credentials) GetUriOk() (ret CredentialsGetUriRetType, ok bool) {
return getCredentialsGetUriAttributeTypeOk(o.Uri)
}
// HasUri returns a boolean if a field has been set.
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.
func (o *Credentials) SetUri(v CredentialsGetUriRetType) {
setCredentialsGetUriAttributeType(&o.Uri, v)
}
// GetUsername returns the Username field value
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.
func (o *Credentials) GetUsernameOk() (ret CredentialsGetUsernameRetType, ok bool) {
return getCredentialsGetUsernameAttributeTypeOk(o.Username)
}
// SetUsername sets field value
func (o *Credentials) SetUsername(v CredentialsGetUsernameRetType) {
setCredentialsGetUsernameAttributeType(&o.Username, v)
}
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 := getCredentialsGetPasswordAttributeTypeOk(o.Password); ok {
toSerialize["Password"] = val
}
if val, ok := getCredentialsGetPortAttributeTypeOk(o.Port); ok {
toSerialize["Port"] = val
}
if val, ok := getCredentialsGetSchemeAttributeTypeOk(o.Scheme); ok {
toSerialize["Scheme"] = val
}
if val, ok := getCredentialsGetUriAttributeTypeOk(o.Uri); ok {
toSerialize["Uri"] = val
}
if val, ok := getCredentialsGetUsernameAttributeTypeOk(o.Username); ok {
toSerialize["Username"] = val
}
return toSerialize, nil
}
type NullableCredentials struct {
value *Credentials
isSet bool
}
func (v NullableCredentials) Get() *Credentials {
return v.value
}
func (v *NullableCredentials) Set(val *Credentials) {
v.value = val
v.isSet = true
}
func (v NullableCredentials) IsSet() bool {
return v.isSet
}
func (v *NullableCredentials) Unset() {
v.value = nil
v.isSet = false
}
func NewNullableCredentials(val *Credentials) *NullableCredentials {
return &NullableCredentials{value: val, isSet: true}
}
func (v NullableCredentials) MarshalJSON() ([]byte, error) {
return json.Marshal(v.value)
}
func (v *NullableCredentials) UnmarshalJSON(src []byte) error {
v.isSet = true
return json.Unmarshal(src, &v.value)
}