The permitting service must ask a separate provisioning service to create a field tablet record, while Object Storage createobject events should invoke a Function. Which pairing is correct?
Select an answer to reveal the explanation.
Short Explanation
App A asking App B to do work is a queue message. A bucket shouting “new object” is Events. Do not invent a bridge that makes Events target Queue.
Full Explanation
Application-published work between microservices belongs on OCI Queue. Platform-emitted resource changes such as Object Storage createobject belong on OCI Events with documented action targets (for example Functions or Notifications). Events actions do not target Queue; treating the two buses as interchangeable mixes different producers and contracts.