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
Flag to indicate whether or not the configuration is enabled.
[optional]
entity_id
str
The entity ID in case of Smart Alerts, such as for the application, website or mobile app.
[optional]
event_types
List[str]
The selected event types, if applicable.
[optional]
id
str
ID of the alert configuration.
invalid
bool
Flag to indicate whether the specified query is invalid.
[optional]
label
str
The name of the alert configuration.
query
str
The DFQ used in the alert configuration, if applicable.
[optional]
selected_events
int
The number of selected events, if applicable.
[optional]
type
str
The alert type.
Example
frominstana_client.models.validated_alerting_channel_input_infoimportValidatedAlertingChannelInputInfo# TODO update the JSON string belowjson="{}"# create an instance of ValidatedAlertingChannelInputInfo from a JSON stringvalidated_alerting_channel_input_info_instance=ValidatedAlertingChannelInputInfo.from_json(json)
# print the JSON string representation of the objectprint(ValidatedAlertingChannelInputInfo.to_json())
# convert the object into a dictvalidated_alerting_channel_input_info_dict=validated_alerting_channel_input_info_instance.to_dict()
# create an instance of ValidatedAlertingChannelInputInfo from a dictvalidated_alerting_channel_input_info_from_dict=ValidatedAlertingChannelInputInfo.from_dict(validated_alerting_channel_input_info_dict)