Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.64 KB

File metadata and controls

35 lines (26 loc) · 1.64 KB

PatchedMutualTLSStageRequest

MutualTLSStage Serializer

Properties

Name Type Description Notes
name str [optional]
flow_set List[FlowSetRequest] [optional]
mode MutualTLSStageModeEnum [optional]
certificate_authorities List[str] Configure certificate authorities to validate the certificate against. This option has a higher priority than the `client_certificate` option on `Brand`. [optional]
cert_attribute CertAttributeEnum [optional]
user_attribute UserAttributeEnum [optional]

Example

from authentik_client.models.patched_mutual_tls_stage_request import PatchedMutualTLSStageRequest

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

# convert the object into a dict
patched_mutual_tls_stage_request_dict = patched_mutual_tls_stage_request_instance.to_dict()
# create an instance of PatchedMutualTLSStageRequest from a dict
patched_mutual_tls_stage_request_from_dict = PatchedMutualTLSStageRequest.from_dict(patched_mutual_tls_stage_request_dict)

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