On a parks recreation API, GET /permits should invoke one Oracle Function and POST /permits should invoke another. What is the correct unit in the deployment specification?
Select an answer to reveal the explanation.
Short Explanation
A route is a labeled hallway: this path, these verbs, that destination. GET and POST on /permits can each point at a different function back end in the specification.
Full Explanation
In an API Gateway deployment specification, a route maps a path, one or more HTTP methods, and a back-end service. GET /orders (or /permits) can target one Function while POST on the same path targets a different Function or HTTP URL. Reason about the route as the unit—not as a Kubernetes Ingress object.