Skip to content

Latest commit

 

History

History
48 lines (39 loc) · 2.75 KB

File metadata and controls

48 lines (39 loc) · 2.75 KB

RadiusProvider

RadiusProvider Serializer

Properties

Name Type Description Notes
pk int [readonly]
name str
authentication_flow UUID Flow used for authentication when the associated application is accessed by an un-authenticated user. [optional]
authorization_flow UUID Flow used when authorizing this provider.
invalidation_flow UUID Flow used ending the session from a provider.
property_mappings List[UUID] [optional]
component str Get object component so that we know how to edit the object [readonly]
assigned_application_slug str Internal application name, used in URLs. [readonly]
assigned_application_name str Application's display Name. [readonly]
assigned_backchannel_application_slug str Internal application name, used in URLs. [readonly]
assigned_backchannel_application_name str Application's display Name. [readonly]
verbose_name str Return object's verbose_name [readonly]
verbose_name_plural str Return object's plural verbose_name [readonly]
meta_model_name str Return internal model name [readonly]
client_networks str 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]
shared_secret str Shared secret between clients and server to hash packets. [optional]
outpost_set List[str] [readonly]
mfa_support 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]
certificate UUID [optional]

Example

from authentik_client.models.radius_provider import RadiusProvider

# TODO update the JSON string below
json = "{}"
# create an instance of RadiusProvider from a JSON string
radius_provider_instance = RadiusProvider.from_json(json)
# print the JSON string representation of the object
print(RadiusProvider.to_json())

# convert the object into a dict
radius_provider_dict = radius_provider_instance.to_dict()
# create an instance of RadiusProvider from a dict
radius_provider_from_dict = RadiusProvider.from_dict(radius_provider_dict)

[Back to Model list] [Back to API list] [Back to README]