Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.81 KB

File metadata and controls

35 lines (26 loc) · 1.81 KB

AlertingConfiguration

Properties

Name Type Description Notes
alert_name str Name of the Alert Configuration.
custom_payload_fields List[StaticStringField] Custom payload fields to send additional information in the alert notifications. Can be left empty.
event_filtering_configuration EventFilteringConfiguration
id str ID of the Alert Configuration.
include_entity_name_in_legacy_alerts bool To include the entity name in a legacy alert based on built-in/custom events. [optional]
integration_ids List[str] List of Alert Channel IDs added in this Alert Configuration.
mute_until int Timer dictating how long the Alert Configuration will stay muted. A value of `0` means the Alert Configuration is currently enabled. Otherwise, the Alert Configuration is currently disabled (muted). [optional]

Example

from instana_client.models.alerting_configuration import AlertingConfiguration

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

# convert the object into a dict
alerting_configuration_dict = alerting_configuration_instance.to_dict()
# create an instance of AlertingConfiguration from a dict
alerting_configuration_from_dict = AlertingConfiguration.from_dict(alerting_configuration_dict)

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