Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.89 KB

File metadata and controls

38 lines (29 loc) · 1.89 KB

BuiltInEventSpecification

Properties

Name Type Description Notes
description str Description of Built-in Event Specification [optional]
enabled bool Flag to show whether the Built-in Event Specification is enabled [optional]
hidden bool Flag to show whether the Built-in Event Specification is hidden [optional]
hyper_params List[HyperParam] List of hyper parameters of the Built-in Event Specification
id str ID of Built-in Event Specification
name str Name of Built-in Event Specification
rule_inputs List[RuleInput] 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

from instana_client.models.built_in_event_specification import BuiltInEventSpecification

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

# convert the object into a dict
built_in_event_specification_dict = built_in_event_specification_instance.to_dict()
# create an instance of BuiltInEventSpecification from a dict
built_in_event_specification_from_dict = BuiltInEventSpecification.from_dict(built_in_event_specification_dict)

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