Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.66 KB

File metadata and controls

39 lines (30 loc) · 1.66 KB

Broker

Properties

Name Type Description Notes
connection_status str The broker's connection status [optional]
failure_reason str The broker's connection failure reason [optional]
fingerprint str The broker's fingerprint [optional]
host str The IP or hostname of the registered broker [optional]
host_name str The IP or hostname of the registered broker [optional]
id str The unique identifier of the broker [optional] [readonly]
interactive_fingerprint_verification bool Validate the broker's fingerprint interactively [optional]
password str The broker's authentication password [optional]
pretty_conn_status str The broker's connection status in human readable format [optional]
trust_new bool The flag used to skip broker's identity verifications [optional]
user str The broker's authentication user [optional]

Example

from cyperf.models.broker import Broker

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

# convert the object into a dict
broker_dict = broker_instance.to_dict()
# create an instance of Broker from a dict
broker_from_dict = Broker.from_dict(broker_dict)

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