Skip to content

Latest commit

 

History

History
40 lines (31 loc) · 1.37 KB

File metadata and controls

40 lines (31 loc) · 1.37 KB

Endpoint

Endpoint Serializer

Properties

Name Type Description Notes
pk UUID [readonly]
name str
provider int
provider_obj RACProvider [readonly]
protocol ProtocolEnum
host str
settings Dict[str, object] [optional]
property_mappings List[UUID] [optional]
auth_mode EndpointAuthModeEnum
launch_url str Build actual launch URL (the provider itself does not have one, just individual endpoints) [readonly]
maximum_connections int [optional]

Example

from authentik_client.models.endpoint import Endpoint

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

# convert the object into a dict
endpoint_dict = endpoint_instance.to_dict()
# create an instance of Endpoint from a dict
endpoint_from_dict = Endpoint.from_dict(endpoint_dict)

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