-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmodel_patched_ldap_provider_request.go
575 lines (489 loc) · 18.1 KB
/
model_patched_ldap_provider_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
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
/*
authentik
Making authentication simple.
API version: 2025.2.3
Contact: hello@goauthentik.io
*/
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
package api
import (
"encoding/json"
)
// PatchedLDAPProviderRequest LDAPProvider Serializer
type PatchedLDAPProviderRequest struct {
Name *string `json:"name,omitempty"`
// Flow used for authentication when the associated application is accessed by an un-authenticated user.
AuthenticationFlow NullableString `json:"authentication_flow,omitempty"`
// Flow used when authorizing this provider.
AuthorizationFlow *string `json:"authorization_flow,omitempty"`
// Flow used ending the session from a provider.
InvalidationFlow *string `json:"invalidation_flow,omitempty"`
PropertyMappings []string `json:"property_mappings,omitempty"`
// DN under which objects are accessible.
BaseDn *string `json:"base_dn,omitempty"`
Certificate NullableString `json:"certificate,omitempty"`
TlsServerName *string `json:"tls_server_name,omitempty"`
// The start for uidNumbers, this number is added to the user.pk to make sure that the numbers aren't too low for POSIX users. Default is 2000 to ensure that we don't collide with local users uidNumber
UidStartNumber *int32 `json:"uid_start_number,omitempty"`
// The start for gidNumbers, this number is added to a number generated from the group.pk to make sure that the numbers aren't too low for POSIX groups. Default is 4000 to ensure that we don't collide with local groups or users primary groups gidNumber
GidStartNumber *int32 `json:"gid_start_number,omitempty"`
SearchMode *LDAPAPIAccessMode `json:"search_mode,omitempty"`
BindMode *LDAPAPIAccessMode `json:"bind_mode,omitempty"`
// When enabled, code-based multi-factor authentication can be used by appending a semicolon and the TOTP code to the password. This should only be enabled if all users that will bind to this provider have a TOTP device configured, as otherwise a password may incorrectly be rejected if it contains a semicolon.
MfaSupport *bool `json:"mfa_support,omitempty"`
}
// NewPatchedLDAPProviderRequest instantiates a new PatchedLDAPProviderRequest 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 NewPatchedLDAPProviderRequest() *PatchedLDAPProviderRequest {
this := PatchedLDAPProviderRequest{}
return &this
}
// NewPatchedLDAPProviderRequestWithDefaults instantiates a new PatchedLDAPProviderRequest 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 NewPatchedLDAPProviderRequestWithDefaults() *PatchedLDAPProviderRequest {
this := PatchedLDAPProviderRequest{}
return &this
}
// GetName returns the Name field value if set, zero value otherwise.
func (o *PatchedLDAPProviderRequest) GetName() string {
if o == nil || o.Name == nil {
var ret string
return ret
}
return *o.Name
}
// GetNameOk returns a tuple with the Name field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *PatchedLDAPProviderRequest) GetNameOk() (*string, bool) {
if o == nil || o.Name == nil {
return nil, false
}
return o.Name, true
}
// HasName returns a boolean if a field has been set.
func (o *PatchedLDAPProviderRequest) HasName() bool {
if o != nil && o.Name != nil {
return true
}
return false
}
// SetName gets a reference to the given string and assigns it to the Name field.
func (o *PatchedLDAPProviderRequest) SetName(v string) {
o.Name = &v
}
// GetAuthenticationFlow returns the AuthenticationFlow field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *PatchedLDAPProviderRequest) GetAuthenticationFlow() string {
if o == nil || o.AuthenticationFlow.Get() == nil {
var ret string
return ret
}
return *o.AuthenticationFlow.Get()
}
// GetAuthenticationFlowOk returns a tuple with the AuthenticationFlow field value if set, nil otherwise
// and a boolean to check if the value has been set.
// NOTE: If the value is an explicit nil, `nil, true` will be returned
func (o *PatchedLDAPProviderRequest) GetAuthenticationFlowOk() (*string, bool) {
if o == nil {
return nil, false
}
return o.AuthenticationFlow.Get(), o.AuthenticationFlow.IsSet()
}
// HasAuthenticationFlow returns a boolean if a field has been set.
func (o *PatchedLDAPProviderRequest) HasAuthenticationFlow() bool {
if o != nil && o.AuthenticationFlow.IsSet() {
return true
}
return false
}
// SetAuthenticationFlow gets a reference to the given NullableString and assigns it to the AuthenticationFlow field.
func (o *PatchedLDAPProviderRequest) SetAuthenticationFlow(v string) {
o.AuthenticationFlow.Set(&v)
}
// SetAuthenticationFlowNil sets the value for AuthenticationFlow to be an explicit nil
func (o *PatchedLDAPProviderRequest) SetAuthenticationFlowNil() {
o.AuthenticationFlow.Set(nil)
}
// UnsetAuthenticationFlow ensures that no value is present for AuthenticationFlow, not even an explicit nil
func (o *PatchedLDAPProviderRequest) UnsetAuthenticationFlow() {
o.AuthenticationFlow.Unset()
}
// GetAuthorizationFlow returns the AuthorizationFlow field value if set, zero value otherwise.
func (o *PatchedLDAPProviderRequest) GetAuthorizationFlow() string {
if o == nil || o.AuthorizationFlow == nil {
var ret string
return ret
}
return *o.AuthorizationFlow
}
// GetAuthorizationFlowOk returns a tuple with the AuthorizationFlow field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *PatchedLDAPProviderRequest) GetAuthorizationFlowOk() (*string, bool) {
if o == nil || o.AuthorizationFlow == nil {
return nil, false
}
return o.AuthorizationFlow, true
}
// HasAuthorizationFlow returns a boolean if a field has been set.
func (o *PatchedLDAPProviderRequest) HasAuthorizationFlow() bool {
if o != nil && o.AuthorizationFlow != nil {
return true
}
return false
}
// SetAuthorizationFlow gets a reference to the given string and assigns it to the AuthorizationFlow field.
func (o *PatchedLDAPProviderRequest) SetAuthorizationFlow(v string) {
o.AuthorizationFlow = &v
}
// GetInvalidationFlow returns the InvalidationFlow field value if set, zero value otherwise.
func (o *PatchedLDAPProviderRequest) GetInvalidationFlow() string {
if o == nil || o.InvalidationFlow == nil {
var ret string
return ret
}
return *o.InvalidationFlow
}
// GetInvalidationFlowOk returns a tuple with the InvalidationFlow field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *PatchedLDAPProviderRequest) GetInvalidationFlowOk() (*string, bool) {
if o == nil || o.InvalidationFlow == nil {
return nil, false
}
return o.InvalidationFlow, true
}
// HasInvalidationFlow returns a boolean if a field has been set.
func (o *PatchedLDAPProviderRequest) HasInvalidationFlow() bool {
if o != nil && o.InvalidationFlow != nil {
return true
}
return false
}
// SetInvalidationFlow gets a reference to the given string and assigns it to the InvalidationFlow field.
func (o *PatchedLDAPProviderRequest) SetInvalidationFlow(v string) {
o.InvalidationFlow = &v
}
// GetPropertyMappings returns the PropertyMappings field value if set, zero value otherwise.
func (o *PatchedLDAPProviderRequest) GetPropertyMappings() []string {
if o == nil || o.PropertyMappings == nil {
var ret []string
return ret
}
return o.PropertyMappings
}
// GetPropertyMappingsOk returns a tuple with the PropertyMappings field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *PatchedLDAPProviderRequest) GetPropertyMappingsOk() ([]string, bool) {
if o == nil || o.PropertyMappings == nil {
return nil, false
}
return o.PropertyMappings, true
}
// HasPropertyMappings returns a boolean if a field has been set.
func (o *PatchedLDAPProviderRequest) HasPropertyMappings() bool {
if o != nil && o.PropertyMappings != nil {
return true
}
return false
}
// SetPropertyMappings gets a reference to the given []string and assigns it to the PropertyMappings field.
func (o *PatchedLDAPProviderRequest) SetPropertyMappings(v []string) {
o.PropertyMappings = v
}
// GetBaseDn returns the BaseDn field value if set, zero value otherwise.
func (o *PatchedLDAPProviderRequest) GetBaseDn() string {
if o == nil || o.BaseDn == nil {
var ret string
return ret
}
return *o.BaseDn
}
// GetBaseDnOk returns a tuple with the BaseDn field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *PatchedLDAPProviderRequest) GetBaseDnOk() (*string, bool) {
if o == nil || o.BaseDn == nil {
return nil, false
}
return o.BaseDn, true
}
// HasBaseDn returns a boolean if a field has been set.
func (o *PatchedLDAPProviderRequest) HasBaseDn() bool {
if o != nil && o.BaseDn != nil {
return true
}
return false
}
// SetBaseDn gets a reference to the given string and assigns it to the BaseDn field.
func (o *PatchedLDAPProviderRequest) SetBaseDn(v string) {
o.BaseDn = &v
}
// GetCertificate returns the Certificate field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *PatchedLDAPProviderRequest) GetCertificate() string {
if o == nil || o.Certificate.Get() == nil {
var ret string
return ret
}
return *o.Certificate.Get()
}
// GetCertificateOk returns a tuple with the Certificate field value if set, nil otherwise
// and a boolean to check if the value has been set.
// NOTE: If the value is an explicit nil, `nil, true` will be returned
func (o *PatchedLDAPProviderRequest) GetCertificateOk() (*string, bool) {
if o == nil {
return nil, false
}
return o.Certificate.Get(), o.Certificate.IsSet()
}
// HasCertificate returns a boolean if a field has been set.
func (o *PatchedLDAPProviderRequest) HasCertificate() bool {
if o != nil && o.Certificate.IsSet() {
return true
}
return false
}
// SetCertificate gets a reference to the given NullableString and assigns it to the Certificate field.
func (o *PatchedLDAPProviderRequest) SetCertificate(v string) {
o.Certificate.Set(&v)
}
// SetCertificateNil sets the value for Certificate to be an explicit nil
func (o *PatchedLDAPProviderRequest) SetCertificateNil() {
o.Certificate.Set(nil)
}
// UnsetCertificate ensures that no value is present for Certificate, not even an explicit nil
func (o *PatchedLDAPProviderRequest) UnsetCertificate() {
o.Certificate.Unset()
}
// GetTlsServerName returns the TlsServerName field value if set, zero value otherwise.
func (o *PatchedLDAPProviderRequest) GetTlsServerName() string {
if o == nil || o.TlsServerName == nil {
var ret string
return ret
}
return *o.TlsServerName
}
// GetTlsServerNameOk returns a tuple with the TlsServerName field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *PatchedLDAPProviderRequest) GetTlsServerNameOk() (*string, bool) {
if o == nil || o.TlsServerName == nil {
return nil, false
}
return o.TlsServerName, true
}
// HasTlsServerName returns a boolean if a field has been set.
func (o *PatchedLDAPProviderRequest) HasTlsServerName() bool {
if o != nil && o.TlsServerName != nil {
return true
}
return false
}
// SetTlsServerName gets a reference to the given string and assigns it to the TlsServerName field.
func (o *PatchedLDAPProviderRequest) SetTlsServerName(v string) {
o.TlsServerName = &v
}
// GetUidStartNumber returns the UidStartNumber field value if set, zero value otherwise.
func (o *PatchedLDAPProviderRequest) GetUidStartNumber() int32 {
if o == nil || o.UidStartNumber == nil {
var ret int32
return ret
}
return *o.UidStartNumber
}
// GetUidStartNumberOk returns a tuple with the UidStartNumber field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *PatchedLDAPProviderRequest) GetUidStartNumberOk() (*int32, bool) {
if o == nil || o.UidStartNumber == nil {
return nil, false
}
return o.UidStartNumber, true
}
// HasUidStartNumber returns a boolean if a field has been set.
func (o *PatchedLDAPProviderRequest) HasUidStartNumber() bool {
if o != nil && o.UidStartNumber != nil {
return true
}
return false
}
// SetUidStartNumber gets a reference to the given int32 and assigns it to the UidStartNumber field.
func (o *PatchedLDAPProviderRequest) SetUidStartNumber(v int32) {
o.UidStartNumber = &v
}
// GetGidStartNumber returns the GidStartNumber field value if set, zero value otherwise.
func (o *PatchedLDAPProviderRequest) GetGidStartNumber() int32 {
if o == nil || o.GidStartNumber == nil {
var ret int32
return ret
}
return *o.GidStartNumber
}
// GetGidStartNumberOk returns a tuple with the GidStartNumber field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *PatchedLDAPProviderRequest) GetGidStartNumberOk() (*int32, bool) {
if o == nil || o.GidStartNumber == nil {
return nil, false
}
return o.GidStartNumber, true
}
// HasGidStartNumber returns a boolean if a field has been set.
func (o *PatchedLDAPProviderRequest) HasGidStartNumber() bool {
if o != nil && o.GidStartNumber != nil {
return true
}
return false
}
// SetGidStartNumber gets a reference to the given int32 and assigns it to the GidStartNumber field.
func (o *PatchedLDAPProviderRequest) SetGidStartNumber(v int32) {
o.GidStartNumber = &v
}
// GetSearchMode returns the SearchMode field value if set, zero value otherwise.
func (o *PatchedLDAPProviderRequest) GetSearchMode() LDAPAPIAccessMode {
if o == nil || o.SearchMode == nil {
var ret LDAPAPIAccessMode
return ret
}
return *o.SearchMode
}
// GetSearchModeOk returns a tuple with the SearchMode field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *PatchedLDAPProviderRequest) GetSearchModeOk() (*LDAPAPIAccessMode, bool) {
if o == nil || o.SearchMode == nil {
return nil, false
}
return o.SearchMode, true
}
// HasSearchMode returns a boolean if a field has been set.
func (o *PatchedLDAPProviderRequest) HasSearchMode() bool {
if o != nil && o.SearchMode != nil {
return true
}
return false
}
// SetSearchMode gets a reference to the given LDAPAPIAccessMode and assigns it to the SearchMode field.
func (o *PatchedLDAPProviderRequest) SetSearchMode(v LDAPAPIAccessMode) {
o.SearchMode = &v
}
// GetBindMode returns the BindMode field value if set, zero value otherwise.
func (o *PatchedLDAPProviderRequest) GetBindMode() LDAPAPIAccessMode {
if o == nil || o.BindMode == nil {
var ret LDAPAPIAccessMode
return ret
}
return *o.BindMode
}
// GetBindModeOk returns a tuple with the BindMode field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *PatchedLDAPProviderRequest) GetBindModeOk() (*LDAPAPIAccessMode, bool) {
if o == nil || o.BindMode == nil {
return nil, false
}
return o.BindMode, true
}
// HasBindMode returns a boolean if a field has been set.
func (o *PatchedLDAPProviderRequest) HasBindMode() bool {
if o != nil && o.BindMode != nil {
return true
}
return false
}
// SetBindMode gets a reference to the given LDAPAPIAccessMode and assigns it to the BindMode field.
func (o *PatchedLDAPProviderRequest) SetBindMode(v LDAPAPIAccessMode) {
o.BindMode = &v
}
// GetMfaSupport returns the MfaSupport field value if set, zero value otherwise.
func (o *PatchedLDAPProviderRequest) GetMfaSupport() bool {
if o == nil || o.MfaSupport == nil {
var ret bool
return ret
}
return *o.MfaSupport
}
// GetMfaSupportOk returns a tuple with the MfaSupport field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *PatchedLDAPProviderRequest) GetMfaSupportOk() (*bool, bool) {
if o == nil || o.MfaSupport == nil {
return nil, false
}
return o.MfaSupport, true
}
// HasMfaSupport returns a boolean if a field has been set.
func (o *PatchedLDAPProviderRequest) HasMfaSupport() bool {
if o != nil && o.MfaSupport != nil {
return true
}
return false
}
// SetMfaSupport gets a reference to the given bool and assigns it to the MfaSupport field.
func (o *PatchedLDAPProviderRequest) SetMfaSupport(v bool) {
o.MfaSupport = &v
}
func (o PatchedLDAPProviderRequest) MarshalJSON() ([]byte, error) {
toSerialize := map[string]interface{}{}
if o.Name != nil {
toSerialize["name"] = o.Name
}
if o.AuthenticationFlow.IsSet() {
toSerialize["authentication_flow"] = o.AuthenticationFlow.Get()
}
if o.AuthorizationFlow != nil {
toSerialize["authorization_flow"] = o.AuthorizationFlow
}
if o.InvalidationFlow != nil {
toSerialize["invalidation_flow"] = o.InvalidationFlow
}
if o.PropertyMappings != nil {
toSerialize["property_mappings"] = o.PropertyMappings
}
if o.BaseDn != nil {
toSerialize["base_dn"] = o.BaseDn
}
if o.Certificate.IsSet() {
toSerialize["certificate"] = o.Certificate.Get()
}
if o.TlsServerName != nil {
toSerialize["tls_server_name"] = o.TlsServerName
}
if o.UidStartNumber != nil {
toSerialize["uid_start_number"] = o.UidStartNumber
}
if o.GidStartNumber != nil {
toSerialize["gid_start_number"] = o.GidStartNumber
}
if o.SearchMode != nil {
toSerialize["search_mode"] = o.SearchMode
}
if o.BindMode != nil {
toSerialize["bind_mode"] = o.BindMode
}
if o.MfaSupport != nil {
toSerialize["mfa_support"] = o.MfaSupport
}
return json.Marshal(toSerialize)
}
type NullablePatchedLDAPProviderRequest struct {
value *PatchedLDAPProviderRequest
isSet bool
}
func (v NullablePatchedLDAPProviderRequest) Get() *PatchedLDAPProviderRequest {
return v.value
}
func (v *NullablePatchedLDAPProviderRequest) Set(val *PatchedLDAPProviderRequest) {
v.value = val
v.isSet = true
}
func (v NullablePatchedLDAPProviderRequest) IsSet() bool {
return v.isSet
}
func (v *NullablePatchedLDAPProviderRequest) Unset() {
v.value = nil
v.isSet = false
}
func NewNullablePatchedLDAPProviderRequest(val *PatchedLDAPProviderRequest) *NullablePatchedLDAPProviderRequest {
return &NullablePatchedLDAPProviderRequest{value: val, isSet: true}
}
func (v NullablePatchedLDAPProviderRequest) MarshalJSON() ([]byte, error) {
return json.Marshal(v.value)
}
func (v *NullablePatchedLDAPProviderRequest) UnmarshalJSON(src []byte) error {
v.isSet = true
return json.Unmarshal(src, &v.value)
}