Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.41 KB

File metadata and controls

34 lines (25 loc) · 1.41 KB

MutualTLSStageRequest

MutualTLSStage Serializer

Properties

Name Type Description Notes
name str
mode StageModeEnum
certificate_authorities List[UUID] 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
user_attribute UserAttributeEnum

Example

from authentik_client.models.mutual_tls_stage_request import MutualTLSStageRequest

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

# convert the object into a dict
mutual_tls_stage_request_dict = mutual_tls_stage_request_instance.to_dict()
# create an instance of MutualTLSStageRequest from a dict
mutual_tls_stage_request_from_dict = MutualTLSStageRequest.from_dict(mutual_tls_stage_request_dict)

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