Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 904 Bytes

File metadata and controls

28 lines (19 loc) · 904 Bytes

LogCountAlertRule

Properties

Name Type Description Notes

Example

from instana_client.models.log_count_alert_rule import LogCountAlertRule

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

# convert the object into a dict
log_count_alert_rule_dict = log_count_alert_rule_instance.to_dict()
# create an instance of LogCountAlertRule from a dict
log_count_alert_rule_from_dict = LogCountAlertRule.from_dict(log_count_alert_rule_dict)

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