AZ-204 Quiz

← Back to Topics

Functions (1 / 54):

Write an Azure function that is invoked when there are inserts or updates in the Items collection of ToDoItems database for Cosmos DB.

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

    ILogger log)
{
    // TODO: List modified documents
}


Exam revision: April 11, 2025