A transit teammate wants one Azure Function that is both HTTP-triggered and timer-triggered to save a file. What is the correct design?
Select an answer to reveal the explanation.
Short Explanation
One function, one doorbell—that’s the rule. Need HTTP and a nightly timer? Make two functions and share the helper code; don’t duct-tape two triggers onto one.
Full Explanation
Azure Functions allows exactly one trigger per function. Multiple output bindings and shared libraries are fine, but HTTP and timer must be separate functions if both schedules are required. Durable Functions and Logic Apps are not the prescribed way to violate the one-trigger rule for this exam skill.