thousandeyes-sdk-python/alerts/docs/CreateAlertRule201Response.md

2.7 KiB

CreateAlertRule201Response

Properties

Name Type Description Notes
rule_id str Unique ID of the rule. [optional] [readonly]
rule_name str Name of the alert rule.
expression str The expression of the alert rule.
direction AlertDirection [optional]
notify_on_clear bool Send notification when alert clears. [optional]
is_default bool If set to `true`, this alert rule becomes the default for its test type and is automatically applied to newly created tests with relevant metrics. Only one default alert rule is allowed per test type. [optional]
alert_type AlertType
minimum_sources int The minimum number of agents or monitors that must meet the specified criteria to trigger the alert. [optional]
minimum_sources_pct int The minimum percentage of all assigned agents or monitors that must meet the specified criteria to trigger the alert. [optional]
rounds_violating_mode AlertRoundsViolationMode [optional]
rounds_violating_out_of int Specifies the divisor (y value) in the “X of Y times” condition.
rounds_violating_required int Specifies the numerator (x value) in the “X of Y times” condition.
include_covered_prefixes bool Set true to include covered prefixes in the BGP alert rule. Only applicable to BGP alert rules. [optional]
severity Severity [optional]
notifications Notification [optional]
test_ids List[str] Array of test IDs to link to alert rule (get `testId` from `/tests` endpoint). [optional]
links SelfLinksLinks [optional]

Example

from alerts.models.create_alert_rule201_response import CreateAlertRule201Response

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

# convert the object into a dict
create_alert_rule201_response_dict = create_alert_rule201_response_instance.to_dict()
# create an instance of CreateAlertRule201Response from a dict
create_alert_rule201_response_from_dict = CreateAlertRule201Response.from_dict(create_alert_rule201_response_dict)

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