Choose the best Azure service to automate your business processes Flashcards
What are Business processes modeled in software called?
Workflows
What are different technologies that you can use to build and implement workflows that integrate multiple systems?
- Logic Apps
- Microsoft Power Automate
- WebJobs
- Azure Functions
What are the different types of flows that can be created using Power Automate?
There are four different types of flow that you can create:
- Automated: Starts by a trigger from some event.
- Button: Runs a repetitive task with a single click from your mobile device.
- Scheduled: Runs regularly.
- Business process: Models a business process such as the stock ordering process or the complaints procedure. The flow process can have: notifications to required people; with their approval recorded; calendar dates for steps; and recorded time of flow steps.
What are the types of Web Jobs based on the execution?
- Continuous. Starts immediately when the WebJob is created and runs in a continuous loop. For example, you could use a continuous WebJob to check a shared folder for a new photo.
- Triggered. Starts based on a binding event, on a schedule, or when you trigger it manually (on demand).
Give a few templates of Azure Function?
The following list is a sample of some of the templates available to you:
- HTTPTrigger. When you want the code to execute in response to a request sent through the HTTP protocol.
- TimerTrigger. When you want the code to execute according to a schedule.
- BlobTrigger. When you want the code to execute when a new blob is added to an Azure Storage account.
- CosmosDBTrigger. When you want the code to execute in response to new or updated documents in a NoSQL database.
Which among WebJobs and Azure Function help customize JobHost?
Azure Function
Which among WebJobs and Azure Function has better integration with Logic Apps?
Azure Function
Which among WebJobs and Azure Function is cheaper to run if work has to be executed only when conditions are met?
Azure Function, due to it’s consumption plan
Which among WebJobs and Azure Function has more control over retry policies?
WebJobs