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] | |
ClientNetworks | Pointer to string | List of CIDRs (comma-separated) that clients can connect from. A more specific CIDR will match before a looser one. Clients connecting from a non-specified CIDR will be dropped. | [optional] |
SharedSecret | Pointer to string | Shared secret between clients and server to hash packets. | [optional] |
MfaSupport | Pointer to bool | 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. | [optional] |
func NewRadiusProviderRequest(name string, authorizationFlow string, invalidationFlow string, ) *RadiusProviderRequest
NewRadiusProviderRequest instantiates a new RadiusProviderRequest 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 NewRadiusProviderRequestWithDefaults() *RadiusProviderRequest
NewRadiusProviderRequestWithDefaults instantiates a new RadiusProviderRequest 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 *RadiusProviderRequest) GetName() string
GetName returns the Name field if non-nil, zero value otherwise.
func (o *RadiusProviderRequest) 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 *RadiusProviderRequest) SetName(v string)
SetName sets Name field to given value.
func (o *RadiusProviderRequest) GetAuthenticationFlow() string
GetAuthenticationFlow returns the AuthenticationFlow field if non-nil, zero value otherwise.
func (o *RadiusProviderRequest) 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 *RadiusProviderRequest) SetAuthenticationFlow(v string)
SetAuthenticationFlow sets AuthenticationFlow field to given value.
func (o *RadiusProviderRequest) HasAuthenticationFlow() bool
HasAuthenticationFlow returns a boolean if a field has been set.
func (o *RadiusProviderRequest) SetAuthenticationFlowNil(b bool)
SetAuthenticationFlowNil sets the value for AuthenticationFlow to be an explicit nil
func (o *RadiusProviderRequest) UnsetAuthenticationFlow()
UnsetAuthenticationFlow ensures that no value is present for AuthenticationFlow, not even an explicit nil
func (o *RadiusProviderRequest) GetAuthorizationFlow() string
GetAuthorizationFlow returns the AuthorizationFlow field if non-nil, zero value otherwise.
func (o *RadiusProviderRequest) 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 *RadiusProviderRequest) SetAuthorizationFlow(v string)
SetAuthorizationFlow sets AuthorizationFlow field to given value.
func (o *RadiusProviderRequest) GetInvalidationFlow() string
GetInvalidationFlow returns the InvalidationFlow field if non-nil, zero value otherwise.
func (o *RadiusProviderRequest) 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 *RadiusProviderRequest) SetInvalidationFlow(v string)
SetInvalidationFlow sets InvalidationFlow field to given value.
func (o *RadiusProviderRequest) GetPropertyMappings() []string
GetPropertyMappings returns the PropertyMappings field if non-nil, zero value otherwise.
func (o *RadiusProviderRequest) 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 *RadiusProviderRequest) SetPropertyMappings(v []string)
SetPropertyMappings sets PropertyMappings field to given value.
func (o *RadiusProviderRequest) HasPropertyMappings() bool
HasPropertyMappings returns a boolean if a field has been set.
func (o *RadiusProviderRequest) GetClientNetworks() string
GetClientNetworks returns the ClientNetworks field if non-nil, zero value otherwise.
func (o *RadiusProviderRequest) GetClientNetworksOk() (*string, bool)
GetClientNetworksOk returns a tuple with the ClientNetworks field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *RadiusProviderRequest) SetClientNetworks(v string)
SetClientNetworks sets ClientNetworks field to given value.
func (o *RadiusProviderRequest) HasClientNetworks() bool
HasClientNetworks returns a boolean if a field has been set.
func (o *RadiusProviderRequest) GetSharedSecret() string
GetSharedSecret returns the SharedSecret field if non-nil, zero value otherwise.
func (o *RadiusProviderRequest) GetSharedSecretOk() (*string, bool)
GetSharedSecretOk returns a tuple with the SharedSecret field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *RadiusProviderRequest) SetSharedSecret(v string)
SetSharedSecret sets SharedSecret field to given value.
func (o *RadiusProviderRequest) HasSharedSecret() bool
HasSharedSecret returns a boolean if a field has been set.
func (o *RadiusProviderRequest) GetMfaSupport() bool
GetMfaSupport returns the MfaSupport field if non-nil, zero value otherwise.
func (o *RadiusProviderRequest) GetMfaSupportOk() (*bool, bool)
GetMfaSupportOk returns a tuple with the MfaSupport field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *RadiusProviderRequest) SetMfaSupport(v bool)
SetMfaSupport sets MfaSupport field to given value.
func (o *RadiusProviderRequest) HasMfaSupport() bool
HasMfaSupport returns a boolean if a field has been set.