You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fromakeyless.models.logstash_log_forwarding_configimportLogstashLogForwardingConfig# TODO update the JSON string belowjson="{}"# create an instance of LogstashLogForwardingConfig from a JSON stringlogstash_log_forwarding_config_instance=LogstashLogForwardingConfig.from_json(json)
# print the JSON string representation of the objectprint(LogstashLogForwardingConfig.to_json())
# convert the object into a dictlogstash_log_forwarding_config_dict=logstash_log_forwarding_config_instance.to_dict()
# create an instance of LogstashLogForwardingConfig from a dictlogstash_log_forwarding_config_from_dict=LogstashLogForwardingConfig.from_dict(logstash_log_forwarding_config_dict)