Skip to content

Latest commit

 

History

History
41 lines (32 loc) · 1.58 KB

File metadata and controls

41 lines (32 loc) · 1.58 KB

CustomEventSpecification

Properties

Name Type Description Notes
actions List[Action] [optional]
description str [optional]
enabled bool [optional]
entity_type str
expiration_time int [optional]
name str
query str [optional]
rule_logical_operator str Set AND / OR [optional]
rules List[AbstractRule]
transient_event_alert_muted bool [optional]
transient_event_enabled bool [optional]
transient_event_threshold int [optional]
triggering bool [optional]

Example

from instana_client.models.custom_event_specification import CustomEventSpecification

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

# convert the object into a dict
custom_event_specification_dict = custom_event_specification_instance.to_dict()
# create an instance of CustomEventSpecification from a dict
custom_event_specification_from_dict = CustomEventSpecification.from_dict(custom_event_specification_dict)

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