| Name | Type | Description | Notes |
|---|---|---|---|
| Name | string | ||
| AuthenticationFlow | Pointer to NullableString | Flow used for authentication when the associated application is accessed by an un-authenticated user. | [optional] |
| AuthorizationFlow | string | Flow used when authorizing this provider. | |
| InvalidationFlow | string | Flow used ending the session from a provider. | |
| PropertyMappings | Pointer to []string | [optional] | |
| AcsUrl | string | ||
| SlsUrl | Pointer to string | Single Logout Service URL where the logout response should be sent. | [optional] |
| Audience | Pointer to string | Value of the audience restriction field of the assertion. When left empty, no audience restriction will be added. | [optional] |
| Issuer | Pointer to string | Also known as EntityID | [optional] |
| AssertionValidNotBefore | Pointer to string | Assertion valid not before current time + this value (Format: hours=-1;minutes=-2;seconds=-3). | [optional] |
| AssertionValidNotOnOrAfter | Pointer to string | Assertion not valid on or after current time + this value (Format: hours=1;minutes=2;seconds=3). | [optional] |
| SessionValidNotOnOrAfter | Pointer to string | Session not valid on or after current time + this value (Format: hours=1;minutes=2;seconds=3). | [optional] |
| NameIdMapping | Pointer to NullableString | Configure how the NameID value will be created. When left empty, the NameIDPolicy of the incoming request will be considered | [optional] |
| AuthnContextClassRefMapping | Pointer to NullableString | 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. | [optional] |
| DigestAlgorithm | Pointer to DigestAlgorithmEnum | [optional] | |
| SignatureAlgorithm | Pointer to SignatureAlgorithmEnum | [optional] | |
| SigningKp | Pointer to NullableString | Keypair used to sign outgoing Responses going to the Service Provider. | [optional] |
| VerificationKp | Pointer to NullableString | When selected, incoming assertion's Signatures will be validated against this certificate. To allow unsigned Requests, leave on default. | [optional] |
| EncryptionKp | Pointer to NullableString | 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. | [optional] |
| SignAssertion | Pointer to bool | [optional] | |
| SignResponse | Pointer to bool | [optional] | |
| SignLogoutRequest | Pointer to bool | [optional] | |
| SignLogoutResponse | Pointer to bool | [optional] | |
| SpBinding | Pointer to SAMLBindingsEnum | This determines how authentik sends the response back to the Service Provider. | [optional] |
| SlsBinding | Pointer to SAMLBindingsEnum | This determines how authentik sends the logout response back to the Service Provider. | [optional] |
| LogoutMethod | Pointer to SAMLLogoutMethods | Method to use for logout. Front-channel iframe loads all logout URLs simultaneously in hidden iframes. Front-channel native uses your active browser tab to send post requests and redirect to providers. Back-channel sends logout requests directly from the server without user interaction (requires POST SLS binding). | [optional] |
| DefaultRelayState | Pointer to string | Default relay_state value for IDP-initiated logins | [optional] |
| DefaultNameIdPolicy | Pointer to SAMLNameIDPolicyEnum | [optional] |
func NewSAMLProviderRequest(name string, authorizationFlow string, invalidationFlow string, acsUrl string, ) *SAMLProviderRequest
NewSAMLProviderRequest instantiates a new SAMLProviderRequest 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 NewSAMLProviderRequestWithDefaults() *SAMLProviderRequest
NewSAMLProviderRequestWithDefaults instantiates a new SAMLProviderRequest 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 (o *SAMLProviderRequest) GetName() string
GetName returns the Name field if non-nil, zero value otherwise.
func (o *SAMLProviderRequest) GetNameOk() (*string, bool)
GetNameOk returns a tuple with the Name field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *SAMLProviderRequest) SetName(v string)
SetName sets Name field to given value.
func (o *SAMLProviderRequest) GetAuthenticationFlow() string
GetAuthenticationFlow returns the AuthenticationFlow field if non-nil, zero value otherwise.
func (o *SAMLProviderRequest) GetAuthenticationFlowOk() (*string, bool)
GetAuthenticationFlowOk returns a tuple with the AuthenticationFlow field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *SAMLProviderRequest) SetAuthenticationFlow(v string)
SetAuthenticationFlow sets AuthenticationFlow field to given value.
func (o *SAMLProviderRequest) HasAuthenticationFlow() bool
HasAuthenticationFlow returns a boolean if a field has been set.
func (o *SAMLProviderRequest) SetAuthenticationFlowNil(b bool)
SetAuthenticationFlowNil sets the value for AuthenticationFlow to be an explicit nil
func (o *SAMLProviderRequest) UnsetAuthenticationFlow()
UnsetAuthenticationFlow ensures that no value is present for AuthenticationFlow, not even an explicit nil
func (o *SAMLProviderRequest) GetAuthorizationFlow() string
GetAuthorizationFlow returns the AuthorizationFlow field if non-nil, zero value otherwise.
func (o *SAMLProviderRequest) GetAuthorizationFlowOk() (*string, bool)
GetAuthorizationFlowOk returns a tuple with the AuthorizationFlow field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *SAMLProviderRequest) SetAuthorizationFlow(v string)
SetAuthorizationFlow sets AuthorizationFlow field to given value.
func (o *SAMLProviderRequest) GetInvalidationFlow() string
GetInvalidationFlow returns the InvalidationFlow field if non-nil, zero value otherwise.
func (o *SAMLProviderRequest) GetInvalidationFlowOk() (*string, bool)
GetInvalidationFlowOk returns a tuple with the InvalidationFlow field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *SAMLProviderRequest) SetInvalidationFlow(v string)
SetInvalidationFlow sets InvalidationFlow field to given value.
func (o *SAMLProviderRequest) GetPropertyMappings() []string
GetPropertyMappings returns the PropertyMappings field if non-nil, zero value otherwise.
func (o *SAMLProviderRequest) GetPropertyMappingsOk() (*[]string, bool)
GetPropertyMappingsOk returns a tuple with the PropertyMappings field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *SAMLProviderRequest) SetPropertyMappings(v []string)
SetPropertyMappings sets PropertyMappings field to given value.
func (o *SAMLProviderRequest) HasPropertyMappings() bool
HasPropertyMappings returns a boolean if a field has been set.
func (o *SAMLProviderRequest) GetAcsUrl() string
GetAcsUrl returns the AcsUrl field if non-nil, zero value otherwise.
func (o *SAMLProviderRequest) GetAcsUrlOk() (*string, bool)
GetAcsUrlOk returns a tuple with the AcsUrl field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *SAMLProviderRequest) SetAcsUrl(v string)
SetAcsUrl sets AcsUrl field to given value.
func (o *SAMLProviderRequest) GetSlsUrl() string
GetSlsUrl returns the SlsUrl field if non-nil, zero value otherwise.
func (o *SAMLProviderRequest) GetSlsUrlOk() (*string, bool)
GetSlsUrlOk returns a tuple with the SlsUrl field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *SAMLProviderRequest) SetSlsUrl(v string)
SetSlsUrl sets SlsUrl field to given value.
func (o *SAMLProviderRequest) HasSlsUrl() bool
HasSlsUrl returns a boolean if a field has been set.
func (o *SAMLProviderRequest) GetAudience() string
GetAudience returns the Audience field if non-nil, zero value otherwise.
func (o *SAMLProviderRequest) GetAudienceOk() (*string, bool)
GetAudienceOk returns a tuple with the Audience field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *SAMLProviderRequest) SetAudience(v string)
SetAudience sets Audience field to given value.
func (o *SAMLProviderRequest) HasAudience() bool
HasAudience returns a boolean if a field has been set.
func (o *SAMLProviderRequest) GetIssuer() string
GetIssuer returns the Issuer field if non-nil, zero value otherwise.
func (o *SAMLProviderRequest) GetIssuerOk() (*string, bool)
GetIssuerOk returns a tuple with the Issuer field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *SAMLProviderRequest) SetIssuer(v string)
SetIssuer sets Issuer field to given value.
func (o *SAMLProviderRequest) HasIssuer() bool
HasIssuer returns a boolean if a field has been set.
func (o *SAMLProviderRequest) GetAssertionValidNotBefore() string
GetAssertionValidNotBefore returns the AssertionValidNotBefore field if non-nil, zero value otherwise.
func (o *SAMLProviderRequest) GetAssertionValidNotBeforeOk() (*string, bool)
GetAssertionValidNotBeforeOk returns a tuple with the AssertionValidNotBefore field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *SAMLProviderRequest) SetAssertionValidNotBefore(v string)
SetAssertionValidNotBefore sets AssertionValidNotBefore field to given value.
func (o *SAMLProviderRequest) HasAssertionValidNotBefore() bool
HasAssertionValidNotBefore returns a boolean if a field has been set.
func (o *SAMLProviderRequest) GetAssertionValidNotOnOrAfter() string
GetAssertionValidNotOnOrAfter returns the AssertionValidNotOnOrAfter field if non-nil, zero value otherwise.
func (o *SAMLProviderRequest) GetAssertionValidNotOnOrAfterOk() (*string, bool)
GetAssertionValidNotOnOrAfterOk returns a tuple with the AssertionValidNotOnOrAfter field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *SAMLProviderRequest) SetAssertionValidNotOnOrAfter(v string)
SetAssertionValidNotOnOrAfter sets AssertionValidNotOnOrAfter field to given value.
func (o *SAMLProviderRequest) HasAssertionValidNotOnOrAfter() bool
HasAssertionValidNotOnOrAfter returns a boolean if a field has been set.
func (o *SAMLProviderRequest) GetSessionValidNotOnOrAfter() string
GetSessionValidNotOnOrAfter returns the SessionValidNotOnOrAfter field if non-nil, zero value otherwise.
func (o *SAMLProviderRequest) GetSessionValidNotOnOrAfterOk() (*string, bool)
GetSessionValidNotOnOrAfterOk returns a tuple with the SessionValidNotOnOrAfter field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *SAMLProviderRequest) SetSessionValidNotOnOrAfter(v string)
SetSessionValidNotOnOrAfter sets SessionValidNotOnOrAfter field to given value.
func (o *SAMLProviderRequest) HasSessionValidNotOnOrAfter() bool
HasSessionValidNotOnOrAfter returns a boolean if a field has been set.
func (o *SAMLProviderRequest) GetNameIdMapping() string
GetNameIdMapping returns the NameIdMapping field if non-nil, zero value otherwise.
func (o *SAMLProviderRequest) GetNameIdMappingOk() (*string, bool)
GetNameIdMappingOk returns a tuple with the NameIdMapping field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *SAMLProviderRequest) SetNameIdMapping(v string)
SetNameIdMapping sets NameIdMapping field to given value.
func (o *SAMLProviderRequest) HasNameIdMapping() bool
HasNameIdMapping returns a boolean if a field has been set.
func (o *SAMLProviderRequest) SetNameIdMappingNil(b bool)
SetNameIdMappingNil sets the value for NameIdMapping to be an explicit nil
func (o *SAMLProviderRequest) UnsetNameIdMapping()
UnsetNameIdMapping ensures that no value is present for NameIdMapping, not even an explicit nil
func (o *SAMLProviderRequest) GetAuthnContextClassRefMapping() string
GetAuthnContextClassRefMapping returns the AuthnContextClassRefMapping field if non-nil, zero value otherwise.
func (o *SAMLProviderRequest) GetAuthnContextClassRefMappingOk() (*string, bool)
GetAuthnContextClassRefMappingOk returns a tuple with the AuthnContextClassRefMapping field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *SAMLProviderRequest) SetAuthnContextClassRefMapping(v string)
SetAuthnContextClassRefMapping sets AuthnContextClassRefMapping field to given value.
func (o *SAMLProviderRequest) HasAuthnContextClassRefMapping() bool
HasAuthnContextClassRefMapping returns a boolean if a field has been set.
func (o *SAMLProviderRequest) SetAuthnContextClassRefMappingNil(b bool)
SetAuthnContextClassRefMappingNil sets the value for AuthnContextClassRefMapping to be an explicit nil
func (o *SAMLProviderRequest) UnsetAuthnContextClassRefMapping()
UnsetAuthnContextClassRefMapping ensures that no value is present for AuthnContextClassRefMapping, not even an explicit nil
func (o *SAMLProviderRequest) GetDigestAlgorithm() DigestAlgorithmEnum
GetDigestAlgorithm returns the DigestAlgorithm field if non-nil, zero value otherwise.
func (o *SAMLProviderRequest) GetDigestAlgorithmOk() (*DigestAlgorithmEnum, bool)
GetDigestAlgorithmOk returns a tuple with the DigestAlgorithm field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *SAMLProviderRequest) SetDigestAlgorithm(v DigestAlgorithmEnum)
SetDigestAlgorithm sets DigestAlgorithm field to given value.
func (o *SAMLProviderRequest) HasDigestAlgorithm() bool
HasDigestAlgorithm returns a boolean if a field has been set.
func (o *SAMLProviderRequest) GetSignatureAlgorithm() SignatureAlgorithmEnum
GetSignatureAlgorithm returns the SignatureAlgorithm field if non-nil, zero value otherwise.
func (o *SAMLProviderRequest) GetSignatureAlgorithmOk() (*SignatureAlgorithmEnum, bool)
GetSignatureAlgorithmOk returns a tuple with the SignatureAlgorithm field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *SAMLProviderRequest) SetSignatureAlgorithm(v SignatureAlgorithmEnum)
SetSignatureAlgorithm sets SignatureAlgorithm field to given value.
func (o *SAMLProviderRequest) HasSignatureAlgorithm() bool
HasSignatureAlgorithm returns a boolean if a field has been set.
func (o *SAMLProviderRequest) GetSigningKp() string
GetSigningKp returns the SigningKp field if non-nil, zero value otherwise.
func (o *SAMLProviderRequest) GetSigningKpOk() (*string, bool)
GetSigningKpOk returns a tuple with the SigningKp field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *SAMLProviderRequest) SetSigningKp(v string)
SetSigningKp sets SigningKp field to given value.
func (o *SAMLProviderRequest) HasSigningKp() bool
HasSigningKp returns a boolean if a field has been set.
func (o *SAMLProviderRequest) SetSigningKpNil(b bool)
SetSigningKpNil sets the value for SigningKp to be an explicit nil
func (o *SAMLProviderRequest) UnsetSigningKp()
UnsetSigningKp ensures that no value is present for SigningKp, not even an explicit nil
func (o *SAMLProviderRequest) GetVerificationKp() string
GetVerificationKp returns the VerificationKp field if non-nil, zero value otherwise.
func (o *SAMLProviderRequest) GetVerificationKpOk() (*string, bool)
GetVerificationKpOk returns a tuple with the VerificationKp field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *SAMLProviderRequest) SetVerificationKp(v string)
SetVerificationKp sets VerificationKp field to given value.
func (o *SAMLProviderRequest) HasVerificationKp() bool
HasVerificationKp returns a boolean if a field has been set.
func (o *SAMLProviderRequest) SetVerificationKpNil(b bool)
SetVerificationKpNil sets the value for VerificationKp to be an explicit nil
func (o *SAMLProviderRequest) UnsetVerificationKp()
UnsetVerificationKp ensures that no value is present for VerificationKp, not even an explicit nil
func (o *SAMLProviderRequest) GetEncryptionKp() string
GetEncryptionKp returns the EncryptionKp field if non-nil, zero value otherwise.
func (o *SAMLProviderRequest) GetEncryptionKpOk() (*string, bool)
GetEncryptionKpOk returns a tuple with the EncryptionKp field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *SAMLProviderRequest) SetEncryptionKp(v string)
SetEncryptionKp sets EncryptionKp field to given value.
func (o *SAMLProviderRequest) HasEncryptionKp() bool
HasEncryptionKp returns a boolean if a field has been set.
func (o *SAMLProviderRequest) SetEncryptionKpNil(b bool)
SetEncryptionKpNil sets the value for EncryptionKp to be an explicit nil
func (o *SAMLProviderRequest) UnsetEncryptionKp()
UnsetEncryptionKp ensures that no value is present for EncryptionKp, not even an explicit nil
func (o *SAMLProviderRequest) GetSignAssertion() bool
GetSignAssertion returns the SignAssertion field if non-nil, zero value otherwise.
func (o *SAMLProviderRequest) GetSignAssertionOk() (*bool, bool)
GetSignAssertionOk returns a tuple with the SignAssertion field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *SAMLProviderRequest) SetSignAssertion(v bool)
SetSignAssertion sets SignAssertion field to given value.
func (o *SAMLProviderRequest) HasSignAssertion() bool
HasSignAssertion returns a boolean if a field has been set.
func (o *SAMLProviderRequest) GetSignResponse() bool
GetSignResponse returns the SignResponse field if non-nil, zero value otherwise.
func (o *SAMLProviderRequest) GetSignResponseOk() (*bool, bool)
GetSignResponseOk returns a tuple with the SignResponse field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *SAMLProviderRequest) SetSignResponse(v bool)
SetSignResponse sets SignResponse field to given value.
func (o *SAMLProviderRequest) HasSignResponse() bool
HasSignResponse returns a boolean if a field has been set.
func (o *SAMLProviderRequest) GetSignLogoutRequest() bool
GetSignLogoutRequest returns the SignLogoutRequest field if non-nil, zero value otherwise.
func (o *SAMLProviderRequest) GetSignLogoutRequestOk() (*bool, bool)
GetSignLogoutRequestOk returns a tuple with the SignLogoutRequest field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *SAMLProviderRequest) SetSignLogoutRequest(v bool)
SetSignLogoutRequest sets SignLogoutRequest field to given value.
func (o *SAMLProviderRequest) HasSignLogoutRequest() bool
HasSignLogoutRequest returns a boolean if a field has been set.
func (o *SAMLProviderRequest) GetSignLogoutResponse() bool
GetSignLogoutResponse returns the SignLogoutResponse field if non-nil, zero value otherwise.
func (o *SAMLProviderRequest) GetSignLogoutResponseOk() (*bool, bool)
GetSignLogoutResponseOk returns a tuple with the SignLogoutResponse field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *SAMLProviderRequest) SetSignLogoutResponse(v bool)
SetSignLogoutResponse sets SignLogoutResponse field to given value.
func (o *SAMLProviderRequest) HasSignLogoutResponse() bool
HasSignLogoutResponse returns a boolean if a field has been set.
func (o *SAMLProviderRequest) GetSpBinding() SAMLBindingsEnum
GetSpBinding returns the SpBinding field if non-nil, zero value otherwise.
func (o *SAMLProviderRequest) GetSpBindingOk() (*SAMLBindingsEnum, bool)
GetSpBindingOk returns a tuple with the SpBinding field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *SAMLProviderRequest) SetSpBinding(v SAMLBindingsEnum)
SetSpBinding sets SpBinding field to given value.
func (o *SAMLProviderRequest) HasSpBinding() bool
HasSpBinding returns a boolean if a field has been set.
func (o *SAMLProviderRequest) GetSlsBinding() SAMLBindingsEnum
GetSlsBinding returns the SlsBinding field if non-nil, zero value otherwise.
func (o *SAMLProviderRequest) GetSlsBindingOk() (*SAMLBindingsEnum, bool)
GetSlsBindingOk returns a tuple with the SlsBinding field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *SAMLProviderRequest) SetSlsBinding(v SAMLBindingsEnum)
SetSlsBinding sets SlsBinding field to given value.
func (o *SAMLProviderRequest) HasSlsBinding() bool
HasSlsBinding returns a boolean if a field has been set.
func (o *SAMLProviderRequest) GetLogoutMethod() SAMLLogoutMethods
GetLogoutMethod returns the LogoutMethod field if non-nil, zero value otherwise.
func (o *SAMLProviderRequest) GetLogoutMethodOk() (*SAMLLogoutMethods, bool)
GetLogoutMethodOk returns a tuple with the LogoutMethod field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *SAMLProviderRequest) SetLogoutMethod(v SAMLLogoutMethods)
SetLogoutMethod sets LogoutMethod field to given value.
func (o *SAMLProviderRequest) HasLogoutMethod() bool
HasLogoutMethod returns a boolean if a field has been set.
func (o *SAMLProviderRequest) GetDefaultRelayState() string
GetDefaultRelayState returns the DefaultRelayState field if non-nil, zero value otherwise.
func (o *SAMLProviderRequest) GetDefaultRelayStateOk() (*string, bool)
GetDefaultRelayStateOk returns a tuple with the DefaultRelayState field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *SAMLProviderRequest) SetDefaultRelayState(v string)
SetDefaultRelayState sets DefaultRelayState field to given value.
func (o *SAMLProviderRequest) HasDefaultRelayState() bool
HasDefaultRelayState returns a boolean if a field has been set.
func (o *SAMLProviderRequest) GetDefaultNameIdPolicy() SAMLNameIDPolicyEnum
GetDefaultNameIdPolicy returns the DefaultNameIdPolicy field if non-nil, zero value otherwise.
func (o *SAMLProviderRequest) GetDefaultNameIdPolicyOk() (*SAMLNameIDPolicyEnum, bool)
GetDefaultNameIdPolicyOk returns a tuple with the DefaultNameIdPolicy field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *SAMLProviderRequest) SetDefaultNameIdPolicy(v SAMLNameIDPolicyEnum)
SetDefaultNameIdPolicy sets DefaultNameIdPolicy field to given value.
func (o *SAMLProviderRequest) HasDefaultNameIdPolicy() bool
HasDefaultNameIdPolicy returns a boolean if a field has been set.