Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.24 KB

KmipDescribeServerOutput.md

File metadata and controls

34 lines (25 loc) · 1.24 KB

KmipDescribeServerOutput

Properties

Name Type Description Notes
active bool [optional]
ca_cert List[int] [optional]
certificate_issue_date datetime [optional]
certificate_ttl_in_seconds int [optional]
hostname str [optional]
root str [optional]

Example

from akeyless.models.kmip_describe_server_output import KmipDescribeServerOutput

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

# convert the object into a dict
kmip_describe_server_output_dict = kmip_describe_server_output_instance.to_dict()
# create an instance of KmipDescribeServerOutput from a dict
kmip_describe_server_output_from_dict = KmipDescribeServerOutput.from_dict(kmip_describe_server_output_dict)

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