-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmodel_patched_saml_provider_request.go
951 lines (812 loc) · 31.6 KB
/
model_patched_saml_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
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
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
/*
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"
)
// PatchedSAMLProviderRequest SAMLProvider Serializer
type PatchedSAMLProviderRequest 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"`
AcsUrl *string `json:"acs_url,omitempty"`
// Value of the audience restriction field of the assertion. When left empty, no audience restriction will be added.
Audience *string `json:"audience,omitempty"`
// Also known as EntityID
Issuer *string `json:"issuer,omitempty"`
// Assertion valid not before current time + this value (Format: hours=-1;minutes=-2;seconds=-3).
AssertionValidNotBefore *string `json:"assertion_valid_not_before,omitempty"`
// Assertion not valid on or after current time + this value (Format: hours=1;minutes=2;seconds=3).
AssertionValidNotOnOrAfter *string `json:"assertion_valid_not_on_or_after,omitempty"`
// Session not valid on or after current time + this value (Format: hours=1;minutes=2;seconds=3).
SessionValidNotOnOrAfter *string `json:"session_valid_not_on_or_after,omitempty"`
// Configure how the NameID value will be created. When left empty, the NameIDPolicy of the incoming request will be considered
NameIdMapping NullableString `json:"name_id_mapping,omitempty"`
// Configure how the AuthnContextClassRef value will be created. When left empty, the AuthnContextClassRef will be set based on which authentication methods the user used to authenticate.
AuthnContextClassRefMapping NullableString `json:"authn_context_class_ref_mapping,omitempty"`
DigestAlgorithm *DigestAlgorithmEnum `json:"digest_algorithm,omitempty"`
SignatureAlgorithm *SignatureAlgorithmEnum `json:"signature_algorithm,omitempty"`
// Keypair used to sign outgoing Responses going to the Service Provider.
SigningKp NullableString `json:"signing_kp,omitempty"`
// When selected, incoming assertion's Signatures will be validated against this certificate. To allow unsigned Requests, leave on default.
VerificationKp NullableString `json:"verification_kp,omitempty"`
// When selected, incoming assertions are encrypted by the IdP using the public key of the encryption keypair. The assertion is decrypted by the SP using the the private key.
EncryptionKp NullableString `json:"encryption_kp,omitempty"`
SignAssertion *bool `json:"sign_assertion,omitempty"`
SignResponse *bool `json:"sign_response,omitempty"`
// This determines how authentik sends the response back to the Service Provider.
SpBinding *SpBindingEnum `json:"sp_binding,omitempty"`
// Default relay_state value for IDP-initiated logins
DefaultRelayState *string `json:"default_relay_state,omitempty"`
}
// NewPatchedSAMLProviderRequest instantiates a new PatchedSAMLProviderRequest 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 NewPatchedSAMLProviderRequest() *PatchedSAMLProviderRequest {
this := PatchedSAMLProviderRequest{}
return &this
}
// NewPatchedSAMLProviderRequestWithDefaults instantiates a new PatchedSAMLProviderRequest 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 NewPatchedSAMLProviderRequestWithDefaults() *PatchedSAMLProviderRequest {
this := PatchedSAMLProviderRequest{}
return &this
}
// GetName returns the Name field value if set, zero value otherwise.
func (o *PatchedSAMLProviderRequest) 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 *PatchedSAMLProviderRequest) 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 *PatchedSAMLProviderRequest) 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 *PatchedSAMLProviderRequest) 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 *PatchedSAMLProviderRequest) 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 *PatchedSAMLProviderRequest) 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 *PatchedSAMLProviderRequest) 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 *PatchedSAMLProviderRequest) SetAuthenticationFlow(v string) {
o.AuthenticationFlow.Set(&v)
}
// SetAuthenticationFlowNil sets the value for AuthenticationFlow to be an explicit nil
func (o *PatchedSAMLProviderRequest) SetAuthenticationFlowNil() {
o.AuthenticationFlow.Set(nil)
}
// UnsetAuthenticationFlow ensures that no value is present for AuthenticationFlow, not even an explicit nil
func (o *PatchedSAMLProviderRequest) UnsetAuthenticationFlow() {
o.AuthenticationFlow.Unset()
}
// GetAuthorizationFlow returns the AuthorizationFlow field value if set, zero value otherwise.
func (o *PatchedSAMLProviderRequest) 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 *PatchedSAMLProviderRequest) 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 *PatchedSAMLProviderRequest) 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 *PatchedSAMLProviderRequest) SetAuthorizationFlow(v string) {
o.AuthorizationFlow = &v
}
// GetInvalidationFlow returns the InvalidationFlow field value if set, zero value otherwise.
func (o *PatchedSAMLProviderRequest) 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 *PatchedSAMLProviderRequest) 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 *PatchedSAMLProviderRequest) 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 *PatchedSAMLProviderRequest) SetInvalidationFlow(v string) {
o.InvalidationFlow = &v
}
// GetPropertyMappings returns the PropertyMappings field value if set, zero value otherwise.
func (o *PatchedSAMLProviderRequest) 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 *PatchedSAMLProviderRequest) 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 *PatchedSAMLProviderRequest) 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 *PatchedSAMLProviderRequest) SetPropertyMappings(v []string) {
o.PropertyMappings = v
}
// GetAcsUrl returns the AcsUrl field value if set, zero value otherwise.
func (o *PatchedSAMLProviderRequest) GetAcsUrl() string {
if o == nil || o.AcsUrl == nil {
var ret string
return ret
}
return *o.AcsUrl
}
// GetAcsUrlOk returns a tuple with the AcsUrl field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *PatchedSAMLProviderRequest) GetAcsUrlOk() (*string, bool) {
if o == nil || o.AcsUrl == nil {
return nil, false
}
return o.AcsUrl, true
}
// HasAcsUrl returns a boolean if a field has been set.
func (o *PatchedSAMLProviderRequest) HasAcsUrl() bool {
if o != nil && o.AcsUrl != nil {
return true
}
return false
}
// SetAcsUrl gets a reference to the given string and assigns it to the AcsUrl field.
func (o *PatchedSAMLProviderRequest) SetAcsUrl(v string) {
o.AcsUrl = &v
}
// GetAudience returns the Audience field value if set, zero value otherwise.
func (o *PatchedSAMLProviderRequest) GetAudience() string {
if o == nil || o.Audience == nil {
var ret string
return ret
}
return *o.Audience
}
// GetAudienceOk returns a tuple with the Audience field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *PatchedSAMLProviderRequest) GetAudienceOk() (*string, bool) {
if o == nil || o.Audience == nil {
return nil, false
}
return o.Audience, true
}
// HasAudience returns a boolean if a field has been set.
func (o *PatchedSAMLProviderRequest) HasAudience() bool {
if o != nil && o.Audience != nil {
return true
}
return false
}
// SetAudience gets a reference to the given string and assigns it to the Audience field.
func (o *PatchedSAMLProviderRequest) SetAudience(v string) {
o.Audience = &v
}
// GetIssuer returns the Issuer field value if set, zero value otherwise.
func (o *PatchedSAMLProviderRequest) GetIssuer() string {
if o == nil || o.Issuer == nil {
var ret string
return ret
}
return *o.Issuer
}
// GetIssuerOk returns a tuple with the Issuer field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *PatchedSAMLProviderRequest) GetIssuerOk() (*string, bool) {
if o == nil || o.Issuer == nil {
return nil, false
}
return o.Issuer, true
}
// HasIssuer returns a boolean if a field has been set.
func (o *PatchedSAMLProviderRequest) HasIssuer() bool {
if o != nil && o.Issuer != nil {
return true
}
return false
}
// SetIssuer gets a reference to the given string and assigns it to the Issuer field.
func (o *PatchedSAMLProviderRequest) SetIssuer(v string) {
o.Issuer = &v
}
// GetAssertionValidNotBefore returns the AssertionValidNotBefore field value if set, zero value otherwise.
func (o *PatchedSAMLProviderRequest) GetAssertionValidNotBefore() string {
if o == nil || o.AssertionValidNotBefore == nil {
var ret string
return ret
}
return *o.AssertionValidNotBefore
}
// GetAssertionValidNotBeforeOk returns a tuple with the AssertionValidNotBefore field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *PatchedSAMLProviderRequest) GetAssertionValidNotBeforeOk() (*string, bool) {
if o == nil || o.AssertionValidNotBefore == nil {
return nil, false
}
return o.AssertionValidNotBefore, true
}
// HasAssertionValidNotBefore returns a boolean if a field has been set.
func (o *PatchedSAMLProviderRequest) HasAssertionValidNotBefore() bool {
if o != nil && o.AssertionValidNotBefore != nil {
return true
}
return false
}
// SetAssertionValidNotBefore gets a reference to the given string and assigns it to the AssertionValidNotBefore field.
func (o *PatchedSAMLProviderRequest) SetAssertionValidNotBefore(v string) {
o.AssertionValidNotBefore = &v
}
// GetAssertionValidNotOnOrAfter returns the AssertionValidNotOnOrAfter field value if set, zero value otherwise.
func (o *PatchedSAMLProviderRequest) GetAssertionValidNotOnOrAfter() string {
if o == nil || o.AssertionValidNotOnOrAfter == nil {
var ret string
return ret
}
return *o.AssertionValidNotOnOrAfter
}
// GetAssertionValidNotOnOrAfterOk returns a tuple with the AssertionValidNotOnOrAfter field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *PatchedSAMLProviderRequest) GetAssertionValidNotOnOrAfterOk() (*string, bool) {
if o == nil || o.AssertionValidNotOnOrAfter == nil {
return nil, false
}
return o.AssertionValidNotOnOrAfter, true
}
// HasAssertionValidNotOnOrAfter returns a boolean if a field has been set.
func (o *PatchedSAMLProviderRequest) HasAssertionValidNotOnOrAfter() bool {
if o != nil && o.AssertionValidNotOnOrAfter != nil {
return true
}
return false
}
// SetAssertionValidNotOnOrAfter gets a reference to the given string and assigns it to the AssertionValidNotOnOrAfter field.
func (o *PatchedSAMLProviderRequest) SetAssertionValidNotOnOrAfter(v string) {
o.AssertionValidNotOnOrAfter = &v
}
// GetSessionValidNotOnOrAfter returns the SessionValidNotOnOrAfter field value if set, zero value otherwise.
func (o *PatchedSAMLProviderRequest) GetSessionValidNotOnOrAfter() string {
if o == nil || o.SessionValidNotOnOrAfter == nil {
var ret string
return ret
}
return *o.SessionValidNotOnOrAfter
}
// GetSessionValidNotOnOrAfterOk returns a tuple with the SessionValidNotOnOrAfter field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *PatchedSAMLProviderRequest) GetSessionValidNotOnOrAfterOk() (*string, bool) {
if o == nil || o.SessionValidNotOnOrAfter == nil {
return nil, false
}
return o.SessionValidNotOnOrAfter, true
}
// HasSessionValidNotOnOrAfter returns a boolean if a field has been set.
func (o *PatchedSAMLProviderRequest) HasSessionValidNotOnOrAfter() bool {
if o != nil && o.SessionValidNotOnOrAfter != nil {
return true
}
return false
}
// SetSessionValidNotOnOrAfter gets a reference to the given string and assigns it to the SessionValidNotOnOrAfter field.
func (o *PatchedSAMLProviderRequest) SetSessionValidNotOnOrAfter(v string) {
o.SessionValidNotOnOrAfter = &v
}
// GetNameIdMapping returns the NameIdMapping field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *PatchedSAMLProviderRequest) GetNameIdMapping() string {
if o == nil || o.NameIdMapping.Get() == nil {
var ret string
return ret
}
return *o.NameIdMapping.Get()
}
// GetNameIdMappingOk returns a tuple with the NameIdMapping 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 *PatchedSAMLProviderRequest) GetNameIdMappingOk() (*string, bool) {
if o == nil {
return nil, false
}
return o.NameIdMapping.Get(), o.NameIdMapping.IsSet()
}
// HasNameIdMapping returns a boolean if a field has been set.
func (o *PatchedSAMLProviderRequest) HasNameIdMapping() bool {
if o != nil && o.NameIdMapping.IsSet() {
return true
}
return false
}
// SetNameIdMapping gets a reference to the given NullableString and assigns it to the NameIdMapping field.
func (o *PatchedSAMLProviderRequest) SetNameIdMapping(v string) {
o.NameIdMapping.Set(&v)
}
// SetNameIdMappingNil sets the value for NameIdMapping to be an explicit nil
func (o *PatchedSAMLProviderRequest) SetNameIdMappingNil() {
o.NameIdMapping.Set(nil)
}
// UnsetNameIdMapping ensures that no value is present for NameIdMapping, not even an explicit nil
func (o *PatchedSAMLProviderRequest) UnsetNameIdMapping() {
o.NameIdMapping.Unset()
}
// GetAuthnContextClassRefMapping returns the AuthnContextClassRefMapping field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *PatchedSAMLProviderRequest) GetAuthnContextClassRefMapping() string {
if o == nil || o.AuthnContextClassRefMapping.Get() == nil {
var ret string
return ret
}
return *o.AuthnContextClassRefMapping.Get()
}
// GetAuthnContextClassRefMappingOk returns a tuple with the AuthnContextClassRefMapping 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 *PatchedSAMLProviderRequest) GetAuthnContextClassRefMappingOk() (*string, bool) {
if o == nil {
return nil, false
}
return o.AuthnContextClassRefMapping.Get(), o.AuthnContextClassRefMapping.IsSet()
}
// HasAuthnContextClassRefMapping returns a boolean if a field has been set.
func (o *PatchedSAMLProviderRequest) HasAuthnContextClassRefMapping() bool {
if o != nil && o.AuthnContextClassRefMapping.IsSet() {
return true
}
return false
}
// SetAuthnContextClassRefMapping gets a reference to the given NullableString and assigns it to the AuthnContextClassRefMapping field.
func (o *PatchedSAMLProviderRequest) SetAuthnContextClassRefMapping(v string) {
o.AuthnContextClassRefMapping.Set(&v)
}
// SetAuthnContextClassRefMappingNil sets the value for AuthnContextClassRefMapping to be an explicit nil
func (o *PatchedSAMLProviderRequest) SetAuthnContextClassRefMappingNil() {
o.AuthnContextClassRefMapping.Set(nil)
}
// UnsetAuthnContextClassRefMapping ensures that no value is present for AuthnContextClassRefMapping, not even an explicit nil
func (o *PatchedSAMLProviderRequest) UnsetAuthnContextClassRefMapping() {
o.AuthnContextClassRefMapping.Unset()
}
// GetDigestAlgorithm returns the DigestAlgorithm field value if set, zero value otherwise.
func (o *PatchedSAMLProviderRequest) GetDigestAlgorithm() DigestAlgorithmEnum {
if o == nil || o.DigestAlgorithm == nil {
var ret DigestAlgorithmEnum
return ret
}
return *o.DigestAlgorithm
}
// GetDigestAlgorithmOk returns a tuple with the DigestAlgorithm field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *PatchedSAMLProviderRequest) GetDigestAlgorithmOk() (*DigestAlgorithmEnum, bool) {
if o == nil || o.DigestAlgorithm == nil {
return nil, false
}
return o.DigestAlgorithm, true
}
// HasDigestAlgorithm returns a boolean if a field has been set.
func (o *PatchedSAMLProviderRequest) HasDigestAlgorithm() bool {
if o != nil && o.DigestAlgorithm != nil {
return true
}
return false
}
// SetDigestAlgorithm gets a reference to the given DigestAlgorithmEnum and assigns it to the DigestAlgorithm field.
func (o *PatchedSAMLProviderRequest) SetDigestAlgorithm(v DigestAlgorithmEnum) {
o.DigestAlgorithm = &v
}
// GetSignatureAlgorithm returns the SignatureAlgorithm field value if set, zero value otherwise.
func (o *PatchedSAMLProviderRequest) GetSignatureAlgorithm() SignatureAlgorithmEnum {
if o == nil || o.SignatureAlgorithm == nil {
var ret SignatureAlgorithmEnum
return ret
}
return *o.SignatureAlgorithm
}
// GetSignatureAlgorithmOk returns a tuple with the SignatureAlgorithm field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *PatchedSAMLProviderRequest) GetSignatureAlgorithmOk() (*SignatureAlgorithmEnum, bool) {
if o == nil || o.SignatureAlgorithm == nil {
return nil, false
}
return o.SignatureAlgorithm, true
}
// HasSignatureAlgorithm returns a boolean if a field has been set.
func (o *PatchedSAMLProviderRequest) HasSignatureAlgorithm() bool {
if o != nil && o.SignatureAlgorithm != nil {
return true
}
return false
}
// SetSignatureAlgorithm gets a reference to the given SignatureAlgorithmEnum and assigns it to the SignatureAlgorithm field.
func (o *PatchedSAMLProviderRequest) SetSignatureAlgorithm(v SignatureAlgorithmEnum) {
o.SignatureAlgorithm = &v
}
// GetSigningKp returns the SigningKp field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *PatchedSAMLProviderRequest) GetSigningKp() string {
if o == nil || o.SigningKp.Get() == nil {
var ret string
return ret
}
return *o.SigningKp.Get()
}
// GetSigningKpOk returns a tuple with the SigningKp 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 *PatchedSAMLProviderRequest) GetSigningKpOk() (*string, bool) {
if o == nil {
return nil, false
}
return o.SigningKp.Get(), o.SigningKp.IsSet()
}
// HasSigningKp returns a boolean if a field has been set.
func (o *PatchedSAMLProviderRequest) HasSigningKp() bool {
if o != nil && o.SigningKp.IsSet() {
return true
}
return false
}
// SetSigningKp gets a reference to the given NullableString and assigns it to the SigningKp field.
func (o *PatchedSAMLProviderRequest) SetSigningKp(v string) {
o.SigningKp.Set(&v)
}
// SetSigningKpNil sets the value for SigningKp to be an explicit nil
func (o *PatchedSAMLProviderRequest) SetSigningKpNil() {
o.SigningKp.Set(nil)
}
// UnsetSigningKp ensures that no value is present for SigningKp, not even an explicit nil
func (o *PatchedSAMLProviderRequest) UnsetSigningKp() {
o.SigningKp.Unset()
}
// GetVerificationKp returns the VerificationKp field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *PatchedSAMLProviderRequest) GetVerificationKp() string {
if o == nil || o.VerificationKp.Get() == nil {
var ret string
return ret
}
return *o.VerificationKp.Get()
}
// GetVerificationKpOk returns a tuple with the VerificationKp 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 *PatchedSAMLProviderRequest) GetVerificationKpOk() (*string, bool) {
if o == nil {
return nil, false
}
return o.VerificationKp.Get(), o.VerificationKp.IsSet()
}
// HasVerificationKp returns a boolean if a field has been set.
func (o *PatchedSAMLProviderRequest) HasVerificationKp() bool {
if o != nil && o.VerificationKp.IsSet() {
return true
}
return false
}
// SetVerificationKp gets a reference to the given NullableString and assigns it to the VerificationKp field.
func (o *PatchedSAMLProviderRequest) SetVerificationKp(v string) {
o.VerificationKp.Set(&v)
}
// SetVerificationKpNil sets the value for VerificationKp to be an explicit nil
func (o *PatchedSAMLProviderRequest) SetVerificationKpNil() {
o.VerificationKp.Set(nil)
}
// UnsetVerificationKp ensures that no value is present for VerificationKp, not even an explicit nil
func (o *PatchedSAMLProviderRequest) UnsetVerificationKp() {
o.VerificationKp.Unset()
}
// GetEncryptionKp returns the EncryptionKp field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *PatchedSAMLProviderRequest) GetEncryptionKp() string {
if o == nil || o.EncryptionKp.Get() == nil {
var ret string
return ret
}
return *o.EncryptionKp.Get()
}
// GetEncryptionKpOk returns a tuple with the EncryptionKp 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 *PatchedSAMLProviderRequest) GetEncryptionKpOk() (*string, bool) {
if o == nil {
return nil, false
}
return o.EncryptionKp.Get(), o.EncryptionKp.IsSet()
}
// HasEncryptionKp returns a boolean if a field has been set.
func (o *PatchedSAMLProviderRequest) HasEncryptionKp() bool {
if o != nil && o.EncryptionKp.IsSet() {
return true
}
return false
}
// SetEncryptionKp gets a reference to the given NullableString and assigns it to the EncryptionKp field.
func (o *PatchedSAMLProviderRequest) SetEncryptionKp(v string) {
o.EncryptionKp.Set(&v)
}
// SetEncryptionKpNil sets the value for EncryptionKp to be an explicit nil
func (o *PatchedSAMLProviderRequest) SetEncryptionKpNil() {
o.EncryptionKp.Set(nil)
}
// UnsetEncryptionKp ensures that no value is present for EncryptionKp, not even an explicit nil
func (o *PatchedSAMLProviderRequest) UnsetEncryptionKp() {
o.EncryptionKp.Unset()
}
// GetSignAssertion returns the SignAssertion field value if set, zero value otherwise.
func (o *PatchedSAMLProviderRequest) GetSignAssertion() bool {
if o == nil || o.SignAssertion == nil {
var ret bool
return ret
}
return *o.SignAssertion
}
// GetSignAssertionOk returns a tuple with the SignAssertion field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *PatchedSAMLProviderRequest) GetSignAssertionOk() (*bool, bool) {
if o == nil || o.SignAssertion == nil {
return nil, false
}
return o.SignAssertion, true
}
// HasSignAssertion returns a boolean if a field has been set.
func (o *PatchedSAMLProviderRequest) HasSignAssertion() bool {
if o != nil && o.SignAssertion != nil {
return true
}
return false
}
// SetSignAssertion gets a reference to the given bool and assigns it to the SignAssertion field.
func (o *PatchedSAMLProviderRequest) SetSignAssertion(v bool) {
o.SignAssertion = &v
}
// GetSignResponse returns the SignResponse field value if set, zero value otherwise.
func (o *PatchedSAMLProviderRequest) GetSignResponse() bool {
if o == nil || o.SignResponse == nil {
var ret bool
return ret
}
return *o.SignResponse
}
// GetSignResponseOk returns a tuple with the SignResponse field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *PatchedSAMLProviderRequest) GetSignResponseOk() (*bool, bool) {
if o == nil || o.SignResponse == nil {
return nil, false
}
return o.SignResponse, true
}
// HasSignResponse returns a boolean if a field has been set.
func (o *PatchedSAMLProviderRequest) HasSignResponse() bool {
if o != nil && o.SignResponse != nil {
return true
}
return false
}
// SetSignResponse gets a reference to the given bool and assigns it to the SignResponse field.
func (o *PatchedSAMLProviderRequest) SetSignResponse(v bool) {
o.SignResponse = &v
}
// GetSpBinding returns the SpBinding field value if set, zero value otherwise.
func (o *PatchedSAMLProviderRequest) GetSpBinding() SpBindingEnum {
if o == nil || o.SpBinding == nil {
var ret SpBindingEnum
return ret
}
return *o.SpBinding
}
// GetSpBindingOk returns a tuple with the SpBinding field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *PatchedSAMLProviderRequest) GetSpBindingOk() (*SpBindingEnum, bool) {
if o == nil || o.SpBinding == nil {
return nil, false
}
return o.SpBinding, true
}
// HasSpBinding returns a boolean if a field has been set.
func (o *PatchedSAMLProviderRequest) HasSpBinding() bool {
if o != nil && o.SpBinding != nil {
return true
}
return false
}
// SetSpBinding gets a reference to the given SpBindingEnum and assigns it to the SpBinding field.
func (o *PatchedSAMLProviderRequest) SetSpBinding(v SpBindingEnum) {
o.SpBinding = &v
}
// GetDefaultRelayState returns the DefaultRelayState field value if set, zero value otherwise.
func (o *PatchedSAMLProviderRequest) GetDefaultRelayState() string {
if o == nil || o.DefaultRelayState == nil {
var ret string
return ret
}
return *o.DefaultRelayState
}
// GetDefaultRelayStateOk returns a tuple with the DefaultRelayState field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *PatchedSAMLProviderRequest) GetDefaultRelayStateOk() (*string, bool) {
if o == nil || o.DefaultRelayState == nil {
return nil, false
}
return o.DefaultRelayState, true
}
// HasDefaultRelayState returns a boolean if a field has been set.
func (o *PatchedSAMLProviderRequest) HasDefaultRelayState() bool {
if o != nil && o.DefaultRelayState != nil {
return true
}
return false
}
// SetDefaultRelayState gets a reference to the given string and assigns it to the DefaultRelayState field.
func (o *PatchedSAMLProviderRequest) SetDefaultRelayState(v string) {
o.DefaultRelayState = &v
}
func (o PatchedSAMLProviderRequest) 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.AcsUrl != nil {
toSerialize["acs_url"] = o.AcsUrl
}
if o.Audience != nil {
toSerialize["audience"] = o.Audience
}
if o.Issuer != nil {
toSerialize["issuer"] = o.Issuer
}
if o.AssertionValidNotBefore != nil {
toSerialize["assertion_valid_not_before"] = o.AssertionValidNotBefore
}
if o.AssertionValidNotOnOrAfter != nil {
toSerialize["assertion_valid_not_on_or_after"] = o.AssertionValidNotOnOrAfter
}
if o.SessionValidNotOnOrAfter != nil {
toSerialize["session_valid_not_on_or_after"] = o.SessionValidNotOnOrAfter
}
if o.NameIdMapping.IsSet() {
toSerialize["name_id_mapping"] = o.NameIdMapping.Get()
}
if o.AuthnContextClassRefMapping.IsSet() {
toSerialize["authn_context_class_ref_mapping"] = o.AuthnContextClassRefMapping.Get()
}
if o.DigestAlgorithm != nil {
toSerialize["digest_algorithm"] = o.DigestAlgorithm
}
if o.SignatureAlgorithm != nil {
toSerialize["signature_algorithm"] = o.SignatureAlgorithm
}
if o.SigningKp.IsSet() {
toSerialize["signing_kp"] = o.SigningKp.Get()
}
if o.VerificationKp.IsSet() {
toSerialize["verification_kp"] = o.VerificationKp.Get()
}
if o.EncryptionKp.IsSet() {
toSerialize["encryption_kp"] = o.EncryptionKp.Get()
}
if o.SignAssertion != nil {
toSerialize["sign_assertion"] = o.SignAssertion
}
if o.SignResponse != nil {
toSerialize["sign_response"] = o.SignResponse
}
if o.SpBinding != nil {
toSerialize["sp_binding"] = o.SpBinding
}
if o.DefaultRelayState != nil {
toSerialize["default_relay_state"] = o.DefaultRelayState
}
return json.Marshal(toSerialize)
}
type NullablePatchedSAMLProviderRequest struct {
value *PatchedSAMLProviderRequest
isSet bool
}
func (v NullablePatchedSAMLProviderRequest) Get() *PatchedSAMLProviderRequest {
return v.value
}
func (v *NullablePatchedSAMLProviderRequest) Set(val *PatchedSAMLProviderRequest) {
v.value = val
v.isSet = true
}
func (v NullablePatchedSAMLProviderRequest) IsSet() bool {
return v.isSet
}
func (v *NullablePatchedSAMLProviderRequest) Unset() {
v.value = nil
v.isSet = false
}
func NewNullablePatchedSAMLProviderRequest(val *PatchedSAMLProviderRequest) *NullablePatchedSAMLProviderRequest {
return &NullablePatchedSAMLProviderRequest{value: val, isSet: true}
}
func (v NullablePatchedSAMLProviderRequest) MarshalJSON() ([]byte, error) {
return json.Marshal(v.value)
}
func (v *NullablePatchedSAMLProviderRequest) UnmarshalJSON(src []byte) error {
v.isSet = true
return json.Unmarshal(src, &v.value)
}