AZ-204 Quiz

Functions

Question:

Imagine you're part of an organization that operates in the cloud and manages numerous resources across a wide variety of Azure subscriptions. For compliance and auditing purposes, the company aims to log all changes to resource states. Considering that your organization operates worldwide, requiring the data to be available without significant latency regardless of the location, which Azure service would you recommend to trigger your Azure Function? Fill in the triggers and bindings in the code provided:

[FunctionName("LogResourceChanges")]
public static void Run(
    /* Triggers and Bindings here */

    ILogger log)
{
    // Process the incoming event
    // Prepare the document based on the event data
    // The document is automatically added to storage
}


Report a problem
Exam revision: April 11, 2025