Skip to content

Latest commit

 

History

History
46 lines (37 loc) · 2.31 KB

File metadata and controls

46 lines (37 loc) · 2.31 KB

RACProvider

RACProvider 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.
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]
settings Dict[str, object] [optional]
outpost_set List[str] [readonly]
connection_expiry str Determines how long a session lasts. Default of 0 means that the sessions lasts until the browser is closed. (Format: hours=-1;minutes=-2;seconds=-3) [optional]
delete_token_on_disconnect bool When set to true, connection tokens will be deleted upon disconnect. [optional]

Example

from authentik_client.models.rac_provider import RACProvider

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

# convert the object into a dict
rac_provider_dict = rac_provider_instance.to_dict()
# create an instance of RACProvider from a dict
rac_provider_from_dict = RACProvider.from_dict(rac_provider_dict)

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