Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.38 KB

File metadata and controls

37 lines (28 loc) · 1.38 KB

PatchedEndpointRequest

Endpoint Serializer

Properties

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

Example

from authentik_client.models.patched_endpoint_request import PatchedEndpointRequest

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

# convert the object into a dict
patched_endpoint_request_dict = patched_endpoint_request_instance.to_dict()
# create an instance of PatchedEndpointRequest from a dict
patched_endpoint_request_from_dict = PatchedEndpointRequest.from_dict(patched_endpoint_request_dict)

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