Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.23 KB

File metadata and controls

37 lines (28 loc) · 1.23 KB

EndpointRequest

Endpoint Serializer

Properties

Name Type Description Notes
name str
provider int
protocol ProtocolEnum
host str
settings Dict[str, object] [optional]
property_mappings List[UUID] [optional]
auth_mode EndpointAuthModeEnum
maximum_connections int [optional]

Example

from authentik_client.models.endpoint_request import EndpointRequest

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

# convert the object into a dict
endpoint_request_dict = endpoint_request_instance.to_dict()
# create an instance of EndpointRequest from a dict
endpoint_request_from_dict = EndpointRequest.from_dict(endpoint_request_dict)

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