AZ-204 Quiz

Functions

Question:

You are responsible for creating a serverless application that communicates with an API. This application will ingest data through HTTP requests and, dependent on the received data, it must modify a structured NoSQL database in the cloud. This database should have a key/attribute store with a schemaless design. Could you outline how you would construct the Azure Function to fulfill this purpose? Please provide the triggers and bindings in the code below:

[FunctionName("UpdateDatabase")]
public static async Task<IActionResult> Run(
    /* Triggers and Bindings here */

    ILogger log)
{
    // Parse the incoming data
    // Add the processed data to storage
    // Return a success response
}


Report a problem
Exam revision: April 11, 2025