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.
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.alerting_configuration_with_last_updatedimportAlertingConfigurationWithLastUpdated# TODO update the JSON string belowjson="{}"# create an instance of AlertingConfigurationWithLastUpdated from a JSON stringalerting_configuration_with_last_updated_instance=AlertingConfigurationWithLastUpdated.from_json(json)
# print the JSON string representation of the objectprint(AlertingConfigurationWithLastUpdated.to_json())
# convert the object into a dictalerting_configuration_with_last_updated_dict=alerting_configuration_with_last_updated_instance.to_dict()
# create an instance of AlertingConfigurationWithLastUpdated from a dictalerting_configuration_with_last_updated_from_dict=AlertingConfigurationWithLastUpdated.from_dict(alerting_configuration_with_last_updated_dict)