A financial services company wants to automate its trade verification processes. The solution requires running a custom Python script to validate transaction signatures and orchestrating a multi-step approval workflow that sends notification emails using pre-built connectors. The company plans to use Azure serverless technologies.
Which of the following statements correctly describe the roles of Azure Functions and Azure Logic Apps in this solution? (Select two)
- Azure Functions is ideal for running the custom Python script to validate transaction signatures.Cevap
- Azure Logic Apps is ideal for orchestrating the multi-step approval workflow and integrating email notifications.Cevap
- CAzure Logic Apps is required to run the custom Python script because Azure Functions only supports no-code workflows.
- DAzure Functions requires the company to manually configure and patch the underlying operating system hosting the Python script.
Cevap
Azure Functions should be used to run the custom Python script for validating signatures, and Azure Logic Apps should be used to orchestrate the multi-step approval workflow with pre-built connectors.
Azure Functions is a serverless compute service that executes custom code, making it the correct choice for running the Python script. Azure Logic Apps is a serverless orchestration service that uses a visual designer to integrate systems and orchestrate workflows, which fits the multi-step approval and notification workflow.
Adım Adım Çözüm
Anahtar Kavram
Azure serverless services include Azure Functions for code-first compute tasks and Azure Logic Apps for designer-first workflow orchestration.