Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.72 KB

File metadata and controls

36 lines (27 loc) · 1.72 KB

PatchedRACProviderRequest

RACProvider Serializer

Properties

Name Type Description Notes
name str [optional]
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. [optional]
property_mappings List[UUID] [optional]
settings Dict[str, object] [optional]
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.patched_rac_provider_request import PatchedRACProviderRequest

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

# convert the object into a dict
patched_rac_provider_request_dict = patched_rac_provider_request_instance.to_dict()
# create an instance of PatchedRACProviderRequest from a dict
patched_rac_provider_request_from_dict = PatchedRACProviderRequest.from_dict(patched_rac_provider_request_dict)

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