Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.97 KB

File metadata and controls

39 lines (30 loc) · 1.97 KB

LicenseServerMetadata

Properties

Name Type Description Notes
connection_status str The license server's connection status [optional] [readonly]
failure_reason str The license server's connection failure reason [optional]
fingerprint str The license server's fingerprint [optional]
host_name str The hostname/IP of the server [optional]
id int The unique identifier of the license server [optional] [readonly]
interactive_fingerprint_verification bool Validate the license's server fingerprint interactively [optional]
password str The license server's authentication password [optional]
pretty_conn_status str The license server's connection status in a human-readable format [optional] [readonly]
trust_new bool The flag used to skip license server's identity verifications [optional]
tunnel_host_name str The hostname/IP of the license server tunnel [optional] [readonly]
user str The license server's authentication user [optional]

Example

from cyperf.models.license_server_metadata import LicenseServerMetadata

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

# convert the object into a dict
license_server_metadata_dict = license_server_metadata_instance.to_dict()
# create an instance of LicenseServerMetadata from a dict
license_server_metadata_from_dict = LicenseServerMetadata.from_dict(license_server_metadata_dict)

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