EnrollmentServiceAuth contains the client authentication information for a Flight Control enrollment service.
| 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. |
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)