Skip to content

Latest commit

 

History

History
40 lines (31 loc) · 1.74 KB

File metadata and controls

40 lines (31 loc) · 1.74 KB

MutualTLSStage

MutualTLSStage Serializer

Properties

Name Type Description Notes
pk UUID [readonly]
name str
component str Get object type so that we know how to edit the object [readonly]
verbose_name str Return object's verbose_name [readonly]
verbose_name_plural str Return object's plural verbose_name [readonly]
meta_model_name str Return internal model name [readonly]
flow_set List[FlowSet] [readonly]
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 import MutualTLSStage

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

# convert the object into a dict
mutual_tls_stage_dict = mutual_tls_stage_instance.to_dict()
# create an instance of MutualTLSStage from a dict
mutual_tls_stage_from_dict = MutualTLSStage.from_dict(mutual_tls_stage_dict)

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