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
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.
invalid
bool
Flag to show whether the Alert Configuration is valid.
[optional]
last_updated
int
Unix timestamp representing the time the configuration was last updated.
[optional]
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
frominstana_client.models.validated_alerting_configurationimportValidatedAlertingConfiguration# TODO update the JSON string belowjson="{}"# create an instance of ValidatedAlertingConfiguration from a JSON stringvalidated_alerting_configuration_instance=ValidatedAlertingConfiguration.from_json(json)
# print the JSON string representation of the objectprint(ValidatedAlertingConfiguration.to_json())
# convert the object into a dictvalidated_alerting_configuration_dict=validated_alerting_configuration_instance.to_dict()
# create an instance of ValidatedAlertingConfiguration from a dictvalidated_alerting_configuration_from_dict=ValidatedAlertingConfiguration.from_dict(validated_alerting_configuration_dict)