Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.26 KB

File metadata and controls

31 lines (22 loc) · 1.26 KB

EnrollmentServiceAuth

EnrollmentServiceAuth contains the client authentication information for a Flight Control enrollment service.

Properties

Name Type Description Notes
client_certificate_data str ClientCertificateData contains PEM-encoded data from a client cert file for TLS.
client_key_data str ClientKeyData contains PEM-encoded data from a client key file for TLS.

Example

from flightctl.models.enrollment_service_auth import EnrollmentServiceAuth

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

# convert the object into a dict
enrollment_service_auth_dict = enrollment_service_auth_instance.to_dict()
# create an instance of EnrollmentServiceAuth from a dict
enrollment_service_auth_from_dict = EnrollmentServiceAuth.from_dict(enrollment_service_auth_dict)

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