...
Code Block | ||||
---|---|---|---|---|
| ||||
{ "eventId" : "00001", "eventCorrelationId : "cmhandle-001" "eventTime" : "2021-11-16T16:42:25-04:00", "eventSource" : "org.onap.ncmp", "eventType" : "org.onap.ncmp.cmhandle-lcm-event.create", ”eventSchema” : “org.onap.ncmp:cmhandle-lcm-event", "eventSchemaVersion" : "v1.0" "event": { “cmhandleId” : “cmhandle-id-001”, "newValues" : { # include ALL cmhandle metadata attributes in newValues section “cmhandle-state” : “READY”“ADVISED”, “dataSyncEnabled” : “TRUE”, “cmhandleProperties” : [ “someProperty-1” : “Initial property value 1”, “someProperty-2” : “Initial property value 2” ] } } } |
...
Code Block | ||||
---|---|---|---|---|
| ||||
{{
"eventId" : "00001",
"eventCorrelationId : "cmhandle-001"
"eventTime" : "2021-11-16T16:42:25-04:00",
"eventSource" : "org.onap.ncmp",
"eventType" : "org.onap.ncmp.cmhandle-lcm-event.update",
”eventSchema” : “org.onap.ncmp:cmhandle-lcm-event",
"eventSchemaVersion" : "v1.0"
"event": {
“cmhandleId” : “cmhandle-id-001”
"oldValues" : {
“cmhandle-state” : “ADVISED”,
“dataSyncEnabled” : “FALSE”,
“cmHandleDescription” : “Some description”
“cmhandleProperties” : [
“someProperty-0” : “ This property will be updated”,
“someProperty-1” : “ This property will be deleted”,
}
"newValues" : {
“cmhandle-state” : “READY”,
“dataSyncEnabled” : “TRUE”,
“cmhandleProperties” : [
“someProperty-0” : “ This property has been updated”,
“someProperty-2” : “ This property is newly added to the cmhandle”
]
}
]
}
}
|
...