Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.22 KB

File metadata and controls

32 lines (23 loc) · 1.22 KB

CertificateKeyPairRequest

CertificateKeyPair Serializer

Properties

Name Type Description Notes
name str
certificate_data str PEM-encoded Certificate data
key_data str Optional Private Key. If this is set, you can use this keypair for encryption. [optional]

Example

from authentik_client.models.certificate_key_pair_request import CertificateKeyPairRequest

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

# convert the object into a dict
certificate_key_pair_request_dict = certificate_key_pair_request_instance.to_dict()
# create an instance of CertificateKeyPairRequest from a dict
certificate_key_pair_request_from_dict = CertificateKeyPairRequest.from_dict(certificate_key_pair_request_dict)

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