-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmodel_auth_method.go
621 lines (529 loc) · 18 KB
/
model_auth_method.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
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
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
/*
* Akeyless API
*
* The purpose of this application is to provide access to Akeyless API.
*
* API version: 2.0
* Contact: [email protected]
*/
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
package akeyless
import (
"encoding/json"
"time"
)
// AuthMethod struct for AuthMethod
type AuthMethod struct {
AccessDate *time.Time `json:"access_date,omitempty"`
AccessDateDisplay *string `json:"access_date_display,omitempty"`
AccessInfo *AuthMethodAccessInfo `json:"access_info,omitempty"`
AccountId *string `json:"account_id,omitempty"`
AssociatedGwIds *[]int64 `json:"associated_gw_ids,omitempty"`
AuthMethodAccessId *string `json:"auth_method_access_id,omitempty"`
AuthMethodAdditionalData *AuthMethodAdditionalData `json:"auth_method_additional_data,omitempty"`
AuthMethodName *string `json:"auth_method_name,omitempty"`
AuthMethodRolesAssoc *[]AuthMethodRoleAssociation `json:"auth_method_roles_assoc,omitempty"`
ClientPermissions *[]string `json:"client_permissions,omitempty"`
CreationDate *time.Time `json:"creation_date,omitempty"`
DeleteProtection *bool `json:"delete_protection,omitempty"`
Description *string `json:"description,omitempty"`
IsApproved *bool `json:"is_approved,omitempty"`
ModificationDate *time.Time `json:"modification_date,omitempty"`
}
// NewAuthMethod instantiates a new AuthMethod 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 NewAuthMethod() *AuthMethod {
this := AuthMethod{}
return &this
}
// NewAuthMethodWithDefaults instantiates a new AuthMethod 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 NewAuthMethodWithDefaults() *AuthMethod {
this := AuthMethod{}
return &this
}
// GetAccessDate returns the AccessDate field value if set, zero value otherwise.
func (o *AuthMethod) GetAccessDate() time.Time {
if o == nil || o.AccessDate == nil {
var ret time.Time
return ret
}
return *o.AccessDate
}
// GetAccessDateOk returns a tuple with the AccessDate field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *AuthMethod) GetAccessDateOk() (*time.Time, bool) {
if o == nil || o.AccessDate == nil {
return nil, false
}
return o.AccessDate, true
}
// HasAccessDate returns a boolean if a field has been set.
func (o *AuthMethod) HasAccessDate() bool {
if o != nil && o.AccessDate != nil {
return true
}
return false
}
// SetAccessDate gets a reference to the given time.Time and assigns it to the AccessDate field.
func (o *AuthMethod) SetAccessDate(v time.Time) {
o.AccessDate = &v
}
// GetAccessDateDisplay returns the AccessDateDisplay field value if set, zero value otherwise.
func (o *AuthMethod) GetAccessDateDisplay() string {
if o == nil || o.AccessDateDisplay == nil {
var ret string
return ret
}
return *o.AccessDateDisplay
}
// GetAccessDateDisplayOk returns a tuple with the AccessDateDisplay field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *AuthMethod) GetAccessDateDisplayOk() (*string, bool) {
if o == nil || o.AccessDateDisplay == nil {
return nil, false
}
return o.AccessDateDisplay, true
}
// HasAccessDateDisplay returns a boolean if a field has been set.
func (o *AuthMethod) HasAccessDateDisplay() bool {
if o != nil && o.AccessDateDisplay != nil {
return true
}
return false
}
// SetAccessDateDisplay gets a reference to the given string and assigns it to the AccessDateDisplay field.
func (o *AuthMethod) SetAccessDateDisplay(v string) {
o.AccessDateDisplay = &v
}
// GetAccessInfo returns the AccessInfo field value if set, zero value otherwise.
func (o *AuthMethod) GetAccessInfo() AuthMethodAccessInfo {
if o == nil || o.AccessInfo == nil {
var ret AuthMethodAccessInfo
return ret
}
return *o.AccessInfo
}
// GetAccessInfoOk returns a tuple with the AccessInfo field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *AuthMethod) GetAccessInfoOk() (*AuthMethodAccessInfo, bool) {
if o == nil || o.AccessInfo == nil {
return nil, false
}
return o.AccessInfo, true
}
// HasAccessInfo returns a boolean if a field has been set.
func (o *AuthMethod) HasAccessInfo() bool {
if o != nil && o.AccessInfo != nil {
return true
}
return false
}
// SetAccessInfo gets a reference to the given AuthMethodAccessInfo and assigns it to the AccessInfo field.
func (o *AuthMethod) SetAccessInfo(v AuthMethodAccessInfo) {
o.AccessInfo = &v
}
// GetAccountId returns the AccountId field value if set, zero value otherwise.
func (o *AuthMethod) GetAccountId() string {
if o == nil || o.AccountId == nil {
var ret string
return ret
}
return *o.AccountId
}
// GetAccountIdOk returns a tuple with the AccountId field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *AuthMethod) GetAccountIdOk() (*string, bool) {
if o == nil || o.AccountId == nil {
return nil, false
}
return o.AccountId, true
}
// HasAccountId returns a boolean if a field has been set.
func (o *AuthMethod) HasAccountId() bool {
if o != nil && o.AccountId != nil {
return true
}
return false
}
// SetAccountId gets a reference to the given string and assigns it to the AccountId field.
func (o *AuthMethod) SetAccountId(v string) {
o.AccountId = &v
}
// GetAssociatedGwIds returns the AssociatedGwIds field value if set, zero value otherwise.
func (o *AuthMethod) GetAssociatedGwIds() []int64 {
if o == nil || o.AssociatedGwIds == nil {
var ret []int64
return ret
}
return *o.AssociatedGwIds
}
// GetAssociatedGwIdsOk returns a tuple with the AssociatedGwIds field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *AuthMethod) GetAssociatedGwIdsOk() (*[]int64, bool) {
if o == nil || o.AssociatedGwIds == nil {
return nil, false
}
return o.AssociatedGwIds, true
}
// HasAssociatedGwIds returns a boolean if a field has been set.
func (o *AuthMethod) HasAssociatedGwIds() bool {
if o != nil && o.AssociatedGwIds != nil {
return true
}
return false
}
// SetAssociatedGwIds gets a reference to the given []int64 and assigns it to the AssociatedGwIds field.
func (o *AuthMethod) SetAssociatedGwIds(v []int64) {
o.AssociatedGwIds = &v
}
// GetAuthMethodAccessId returns the AuthMethodAccessId field value if set, zero value otherwise.
func (o *AuthMethod) GetAuthMethodAccessId() string {
if o == nil || o.AuthMethodAccessId == nil {
var ret string
return ret
}
return *o.AuthMethodAccessId
}
// GetAuthMethodAccessIdOk returns a tuple with the AuthMethodAccessId field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *AuthMethod) GetAuthMethodAccessIdOk() (*string, bool) {
if o == nil || o.AuthMethodAccessId == nil {
return nil, false
}
return o.AuthMethodAccessId, true
}
// HasAuthMethodAccessId returns a boolean if a field has been set.
func (o *AuthMethod) HasAuthMethodAccessId() bool {
if o != nil && o.AuthMethodAccessId != nil {
return true
}
return false
}
// SetAuthMethodAccessId gets a reference to the given string and assigns it to the AuthMethodAccessId field.
func (o *AuthMethod) SetAuthMethodAccessId(v string) {
o.AuthMethodAccessId = &v
}
// GetAuthMethodAdditionalData returns the AuthMethodAdditionalData field value if set, zero value otherwise.
func (o *AuthMethod) GetAuthMethodAdditionalData() AuthMethodAdditionalData {
if o == nil || o.AuthMethodAdditionalData == nil {
var ret AuthMethodAdditionalData
return ret
}
return *o.AuthMethodAdditionalData
}
// GetAuthMethodAdditionalDataOk returns a tuple with the AuthMethodAdditionalData field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *AuthMethod) GetAuthMethodAdditionalDataOk() (*AuthMethodAdditionalData, bool) {
if o == nil || o.AuthMethodAdditionalData == nil {
return nil, false
}
return o.AuthMethodAdditionalData, true
}
// HasAuthMethodAdditionalData returns a boolean if a field has been set.
func (o *AuthMethod) HasAuthMethodAdditionalData() bool {
if o != nil && o.AuthMethodAdditionalData != nil {
return true
}
return false
}
// SetAuthMethodAdditionalData gets a reference to the given AuthMethodAdditionalData and assigns it to the AuthMethodAdditionalData field.
func (o *AuthMethod) SetAuthMethodAdditionalData(v AuthMethodAdditionalData) {
o.AuthMethodAdditionalData = &v
}
// GetAuthMethodName returns the AuthMethodName field value if set, zero value otherwise.
func (o *AuthMethod) GetAuthMethodName() string {
if o == nil || o.AuthMethodName == nil {
var ret string
return ret
}
return *o.AuthMethodName
}
// GetAuthMethodNameOk returns a tuple with the AuthMethodName field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *AuthMethod) GetAuthMethodNameOk() (*string, bool) {
if o == nil || o.AuthMethodName == nil {
return nil, false
}
return o.AuthMethodName, true
}
// HasAuthMethodName returns a boolean if a field has been set.
func (o *AuthMethod) HasAuthMethodName() bool {
if o != nil && o.AuthMethodName != nil {
return true
}
return false
}
// SetAuthMethodName gets a reference to the given string and assigns it to the AuthMethodName field.
func (o *AuthMethod) SetAuthMethodName(v string) {
o.AuthMethodName = &v
}
// GetAuthMethodRolesAssoc returns the AuthMethodRolesAssoc field value if set, zero value otherwise.
func (o *AuthMethod) GetAuthMethodRolesAssoc() []AuthMethodRoleAssociation {
if o == nil || o.AuthMethodRolesAssoc == nil {
var ret []AuthMethodRoleAssociation
return ret
}
return *o.AuthMethodRolesAssoc
}
// GetAuthMethodRolesAssocOk returns a tuple with the AuthMethodRolesAssoc field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *AuthMethod) GetAuthMethodRolesAssocOk() (*[]AuthMethodRoleAssociation, bool) {
if o == nil || o.AuthMethodRolesAssoc == nil {
return nil, false
}
return o.AuthMethodRolesAssoc, true
}
// HasAuthMethodRolesAssoc returns a boolean if a field has been set.
func (o *AuthMethod) HasAuthMethodRolesAssoc() bool {
if o != nil && o.AuthMethodRolesAssoc != nil {
return true
}
return false
}
// SetAuthMethodRolesAssoc gets a reference to the given []AuthMethodRoleAssociation and assigns it to the AuthMethodRolesAssoc field.
func (o *AuthMethod) SetAuthMethodRolesAssoc(v []AuthMethodRoleAssociation) {
o.AuthMethodRolesAssoc = &v
}
// GetClientPermissions returns the ClientPermissions field value if set, zero value otherwise.
func (o *AuthMethod) GetClientPermissions() []string {
if o == nil || o.ClientPermissions == nil {
var ret []string
return ret
}
return *o.ClientPermissions
}
// GetClientPermissionsOk returns a tuple with the ClientPermissions field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *AuthMethod) GetClientPermissionsOk() (*[]string, bool) {
if o == nil || o.ClientPermissions == nil {
return nil, false
}
return o.ClientPermissions, true
}
// HasClientPermissions returns a boolean if a field has been set.
func (o *AuthMethod) HasClientPermissions() bool {
if o != nil && o.ClientPermissions != nil {
return true
}
return false
}
// SetClientPermissions gets a reference to the given []string and assigns it to the ClientPermissions field.
func (o *AuthMethod) SetClientPermissions(v []string) {
o.ClientPermissions = &v
}
// GetCreationDate returns the CreationDate field value if set, zero value otherwise.
func (o *AuthMethod) GetCreationDate() time.Time {
if o == nil || o.CreationDate == nil {
var ret time.Time
return ret
}
return *o.CreationDate
}
// GetCreationDateOk returns a tuple with the CreationDate field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *AuthMethod) GetCreationDateOk() (*time.Time, bool) {
if o == nil || o.CreationDate == nil {
return nil, false
}
return o.CreationDate, true
}
// HasCreationDate returns a boolean if a field has been set.
func (o *AuthMethod) HasCreationDate() bool {
if o != nil && o.CreationDate != nil {
return true
}
return false
}
// SetCreationDate gets a reference to the given time.Time and assigns it to the CreationDate field.
func (o *AuthMethod) SetCreationDate(v time.Time) {
o.CreationDate = &v
}
// GetDeleteProtection returns the DeleteProtection field value if set, zero value otherwise.
func (o *AuthMethod) GetDeleteProtection() bool {
if o == nil || o.DeleteProtection == nil {
var ret bool
return ret
}
return *o.DeleteProtection
}
// GetDeleteProtectionOk returns a tuple with the DeleteProtection field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *AuthMethod) GetDeleteProtectionOk() (*bool, bool) {
if o == nil || o.DeleteProtection == nil {
return nil, false
}
return o.DeleteProtection, true
}
// HasDeleteProtection returns a boolean if a field has been set.
func (o *AuthMethod) HasDeleteProtection() bool {
if o != nil && o.DeleteProtection != nil {
return true
}
return false
}
// SetDeleteProtection gets a reference to the given bool and assigns it to the DeleteProtection field.
func (o *AuthMethod) SetDeleteProtection(v bool) {
o.DeleteProtection = &v
}
// GetDescription returns the Description field value if set, zero value otherwise.
func (o *AuthMethod) GetDescription() string {
if o == nil || o.Description == nil {
var ret string
return ret
}
return *o.Description
}
// GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *AuthMethod) GetDescriptionOk() (*string, bool) {
if o == nil || o.Description == nil {
return nil, false
}
return o.Description, true
}
// HasDescription returns a boolean if a field has been set.
func (o *AuthMethod) HasDescription() bool {
if o != nil && o.Description != nil {
return true
}
return false
}
// SetDescription gets a reference to the given string and assigns it to the Description field.
func (o *AuthMethod) SetDescription(v string) {
o.Description = &v
}
// GetIsApproved returns the IsApproved field value if set, zero value otherwise.
func (o *AuthMethod) GetIsApproved() bool {
if o == nil || o.IsApproved == nil {
var ret bool
return ret
}
return *o.IsApproved
}
// GetIsApprovedOk returns a tuple with the IsApproved field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *AuthMethod) GetIsApprovedOk() (*bool, bool) {
if o == nil || o.IsApproved == nil {
return nil, false
}
return o.IsApproved, true
}
// HasIsApproved returns a boolean if a field has been set.
func (o *AuthMethod) HasIsApproved() bool {
if o != nil && o.IsApproved != nil {
return true
}
return false
}
// SetIsApproved gets a reference to the given bool and assigns it to the IsApproved field.
func (o *AuthMethod) SetIsApproved(v bool) {
o.IsApproved = &v
}
// GetModificationDate returns the ModificationDate field value if set, zero value otherwise.
func (o *AuthMethod) GetModificationDate() time.Time {
if o == nil || o.ModificationDate == nil {
var ret time.Time
return ret
}
return *o.ModificationDate
}
// GetModificationDateOk returns a tuple with the ModificationDate field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *AuthMethod) GetModificationDateOk() (*time.Time, bool) {
if o == nil || o.ModificationDate == nil {
return nil, false
}
return o.ModificationDate, true
}
// HasModificationDate returns a boolean if a field has been set.
func (o *AuthMethod) HasModificationDate() bool {
if o != nil && o.ModificationDate != nil {
return true
}
return false
}
// SetModificationDate gets a reference to the given time.Time and assigns it to the ModificationDate field.
func (o *AuthMethod) SetModificationDate(v time.Time) {
o.ModificationDate = &v
}
func (o AuthMethod) MarshalJSON() ([]byte, error) {
toSerialize := map[string]interface{}{}
if o.AccessDate != nil {
toSerialize["access_date"] = o.AccessDate
}
if o.AccessDateDisplay != nil {
toSerialize["access_date_display"] = o.AccessDateDisplay
}
if o.AccessInfo != nil {
toSerialize["access_info"] = o.AccessInfo
}
if o.AccountId != nil {
toSerialize["account_id"] = o.AccountId
}
if o.AssociatedGwIds != nil {
toSerialize["associated_gw_ids"] = o.AssociatedGwIds
}
if o.AuthMethodAccessId != nil {
toSerialize["auth_method_access_id"] = o.AuthMethodAccessId
}
if o.AuthMethodAdditionalData != nil {
toSerialize["auth_method_additional_data"] = o.AuthMethodAdditionalData
}
if o.AuthMethodName != nil {
toSerialize["auth_method_name"] = o.AuthMethodName
}
if o.AuthMethodRolesAssoc != nil {
toSerialize["auth_method_roles_assoc"] = o.AuthMethodRolesAssoc
}
if o.ClientPermissions != nil {
toSerialize["client_permissions"] = o.ClientPermissions
}
if o.CreationDate != nil {
toSerialize["creation_date"] = o.CreationDate
}
if o.DeleteProtection != nil {
toSerialize["delete_protection"] = o.DeleteProtection
}
if o.Description != nil {
toSerialize["description"] = o.Description
}
if o.IsApproved != nil {
toSerialize["is_approved"] = o.IsApproved
}
if o.ModificationDate != nil {
toSerialize["modification_date"] = o.ModificationDate
}
return json.Marshal(toSerialize)
}
type NullableAuthMethod struct {
value *AuthMethod
isSet bool
}
func (v NullableAuthMethod) Get() *AuthMethod {
return v.value
}
func (v *NullableAuthMethod) Set(val *AuthMethod) {
v.value = val
v.isSet = true
}
func (v NullableAuthMethod) IsSet() bool {
return v.isSet
}
func (v *NullableAuthMethod) Unset() {
v.value = nil
v.isSet = false
}
func NewNullableAuthMethod(val *AuthMethod) *NullableAuthMethod {
return &NullableAuthMethod{value: val, isSet: true}
}
func (v NullableAuthMethod) MarshalJSON() ([]byte, error) {
return json.Marshal(v.value)
}
func (v *NullableAuthMethod) UnmarshalJSON(src []byte) error {
v.isSet = true
return json.Unmarshal(src, &v.value)
}