| Name |
Type |
Description |
Notes |
| connector_uuid |
UUID |
|
[optional] |
| name |
str |
|
|
| enabled |
bool |
|
[optional] |
| component |
str |
Get object component so that we know how to edit the object |
[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] |
| snapshot_expiry |
str |
|
[optional] |
| auth_session_duration |
str |
|
[optional] |
| auth_terminate_session_on_expiry |
bool |
|
[optional] |
| refresh_interval |
str |
|
[optional] |
| authorization_flow |
UUID |
|
[optional] |
| nss_uid_offset |
int |
|
[optional] |
| nss_gid_offset |
int |
|
[optional] |
| challenge_key |
UUID |
|
[optional] |
| challenge_idle_timeout |
str |
|
[optional] |
| challenge_trigger_check_in |
bool |
|
[optional] |
| jwt_federation_providers |
List[int] |
|
[optional] |
from authentik_client.models.agent_connector import AgentConnector
# TODO update the JSON string below
json = "{}"
# create an instance of AgentConnector from a JSON string
agent_connector_instance = AgentConnector.from_json(json)
# print the JSON string representation of the object
print(AgentConnector.to_json())
# convert the object into a dict
agent_connector_dict = agent_connector_instance.to_dict()
# create an instance of AgentConnector from a dict
agent_connector_from_dict = AgentConnector.from_dict(agent_connector_dict)
[Back to Model list] [Back to API list] [Back to README]