Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

3.2.3: Instantiation DMaaP API

Initial Thought for an event to be sent from CL_Instance_Control onto DmaaP for Participants to consume. The event would go onto an output topic which the Participants would be polling/subscribed to

https://{{ONAPIP}}:{{DmaaPPort}}/events/CL_INSTANCE_CONTROL_OUTPUT

Code Block
languageyml
titleCL_Instance_Control Event to DmaaP
collapsetrue
{
	"instance-id" : "myCLInstance1",
	"action" : "INSTANTIATE",
	"configurations" : [
		{
			"participant-id": "Participant_DCAE" 
			"applications": [
				{
				"application-id": "example.pmsh",
				"config": {}
				},
				{
				"application-id": "example.dfc",
				"config": {}
				}
			]
		},
		{
			"participant-id": "Participant_Policy" 
			"applications": [
				{
				"application-id": "example.OperationalPolicy",
				"config": {}
				}
			]
		}
	]
}


3.2.4: Instantiation Participant API

...