Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.3 KB

File metadata and controls

31 lines (22 loc) · 1.3 KB

EnrollmentServiceService

EnrollmentServiceService contains information about connecting to a Flight Control enrollment service.

Properties

Name Type Description Notes
certificate_authority_data str CertificateAuthorityData contains PEM-encoded certificate authority certificates.
server str Server is the address of the Flight Control enrollment service (https://hostname:port).

Example

from flightctl.models.enrollment_service_service import EnrollmentServiceService

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

# convert the object into a dict
enrollment_service_service_dict = enrollment_service_service_instance.to_dict()
# create an instance of EnrollmentServiceService from a dict
enrollment_service_service_from_dict = EnrollmentServiceService.from_dict(enrollment_service_service_dict)

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