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
List of input rules of the Built-in Event Specification
severity
int
Severity level of Built-in Event Specification
[optional]
short_plugin_id
str
ID of short plugin of Built-in Event Specification
triggering
bool
Flag to show whether the Built-in Event Specification is triggering
[optional]
Example
frominstana_client.models.built_in_event_specificationimportBuiltInEventSpecification# TODO update the JSON string belowjson="{}"# create an instance of BuiltInEventSpecification from a JSON stringbuilt_in_event_specification_instance=BuiltInEventSpecification.from_json(json)
# print the JSON string representation of the objectprint(BuiltInEventSpecification.to_json())
# convert the object into a dictbuilt_in_event_specification_dict=built_in_event_specification_instance.to_dict()
# create an instance of BuiltInEventSpecification from a dictbuilt_in_event_specification_from_dict=BuiltInEventSpecification.from_dict(built_in_event_specification_dict)