Skip to content

Latest commit

 

History

History
40 lines (31 loc) · 1.61 KB

SSEventStream.md

File metadata and controls

40 lines (31 loc) · 1.61 KB

SSEventStream

Properties

Name Type Description Notes
type CloudMetadataEventDataType
object_type ResourcetypeMetadataEventAllOfObjectType
timestamp datetime
resource ResourceEntity
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

Example

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)

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