| Name |
Type |
Description |
Notes |
| affected_entities |
List[str] |
|
[optional] |
| end |
int |
|
[optional] |
| endpoint_service_id |
str |
|
[optional] |
| entity_id |
str |
|
|
| entity_type |
str |
|
[optional] |
| event_configuration_type |
str |
|
[optional] |
| id |
str |
|
|
| long_form_plugin_id |
str |
|
[optional] |
| metadata |
Dict[str, object] |
|
[optional] |
| metric_access_id |
str |
|
[optional] |
| plugin |
str |
|
|
| problem |
Problem |
|
[optional] |
| rca |
Dict[str, object] |
|
[optional] |
| short_code |
str |
|
[optional] |
| start |
int |
|
[optional] |
| state |
str |
|
|
| type |
str |
|
|
from instana_client.models.event import Event
# TODO update the JSON string below
json = "{}"
# create an instance of Event from a JSON string
event_instance = Event.from_json(json)
# print the JSON string representation of the object
print(Event.to_json())
# convert the object into a dict
event_dict = event_instance.to_dict()
# create an instance of Event from a dict
event_from_dict = Event.from_dict(event_dict)
[Back to Model list] [Back to API list] [Back to README]