Name | Type | Description | Notes |
---|---|---|---|
type | CloudMetadataEventDataType | ||
object_type | ResourcetypeMetadataEventAllOfObjectType | ||
timestamp | datetime | ||
resource | ResourceEntity | ||
cascade_delete | List[CascadeDeleteValuesInner] | [optional] | |
old_values | object | old values of all attributes that have changed | [optional] |
message | object | The broker message that triggered the discovery | [optional] |
resourcetype | ResourceTypeEntity | ||
id | object | ||
source | CloudMetadataEventDataSource | ||
subject | object | ||
data | MetadataEvent | [optional] | |
time | datetime |
from waylay.services.resources.models.ss_event_stream import SSEventStream
# TODO update the JSON string below
json = "{}"
# create an instance of SSEventStream from a JSON string
ss_event_stream_instance = SSEventStream.from_json(json)
# print the JSON string representation of the object
print SSEventStream.to_json()
# convert the object into a dict
ss_event_stream_dict = ss_event_stream_instance.to_dict()
# create an instance of SSEventStream from a dict
ss_event_stream_form_dict = ss_event_stream.from_dict(ss_event_stream_dict)