A list of rules where each rule is associated with multiple thresholds and their corresponding severity levels. This enables more complex alert configurations with validations to ensure consistent and logical threshold-severity combinations.
| Name | Type | Description | Notes |
|---|---|---|---|
| rule | WebsiteAlertRule | ||
| threshold_operator | str | ||
| thresholds | Dict[str, ThresholdConfigRule] |
from instana_client.models.rule_with_threshold_website_alert_rule import RuleWithThresholdWebsiteAlertRule
# TODO update the JSON string below
json = "{}"
# create an instance of RuleWithThresholdWebsiteAlertRule from a JSON string
rule_with_threshold_website_alert_rule_instance = RuleWithThresholdWebsiteAlertRule.from_json(json)
# print the JSON string representation of the object
print(RuleWithThresholdWebsiteAlertRule.to_json())
# convert the object into a dict
rule_with_threshold_website_alert_rule_dict = rule_with_threshold_website_alert_rule_instance.to_dict()
# create an instance of RuleWithThresholdWebsiteAlertRule from a dict
rule_with_threshold_website_alert_rule_from_dict = RuleWithThresholdWebsiteAlertRule.from_dict(rule_with_threshold_website_alert_rule_dict)