A municipal IT backlog lists three needs: nightly cleanup at 01:00, a partner system that POSTs incidents, and a reaction when a monitored queue message appears. How should the team map Azure Functions triggers?
Select an answer to reveal the explanation.
Short Explanation
Match the doorbell to the knock: timer for night cleanup, HTTP for the partner’s POST, queue trigger when messages show up. Three needs, three trigger families—not one orchestration hammer.
Full Explanation
The January 14, 2026 AZ-204 Functions outline groups triggers as timers, webhooks (HTTP), and data operations (queue, blob, Cosmos, and related). Mapping each municipal need to the matching family is the skill. Durable Functions and Logic Apps are not first-class answers for choosing among those trigger types, and a single Blob trigger does not cover timer or HTTP cases.