Posts

Showing posts with the label certification

Lab: Logic App in Azure Portal

Image
 There are four ways of creating a Logic App. Azure Portal You have a visual designer available here where you can visually see the workflow and all the connectors, conditions, flow paths and available actions. Easy to create design the app and understand what is going on. You can not use source control or DevOps for this LA. Visual Studio 2019 You can design your app in Visual Studio using the building logic app Designer. Also you can also check in the logic app to the source control. Hence you can take the advantage of the DevOps features   Visual Studio Code You can...

Microsoft Azure - Logic Apps

Image
Logic Apps are one of the compute solutions offered by Microsoft Azure. Logic Apps are design first workflows hosted in Azure in a serverless mode and implemented through underlying Azure Service Fabric. They have a visual design to connect your applications, components, services and APIs together in a workflow which is triggered by some event. As Logic Apps are executed in a serverless mode, so you are charged for the consumption plan price which is pay per execution. Logic Apps are used to integrate systems hence they are also called integration service. Components of Logic App Logic Apps require following: Trigger (Only One)  of any supported types (HTTP or other triggers (check list of supported triggers on Microsoft website) to trigger the execution Conditions/loops  (outcome from triggers is checked against a condition or put in a loop) based on which different Actions are executed Actions   are t...

Same code Links for the Az-204 Developing for Microsoft Azure Exam Topics

I will keep adding more links in the list below and categorise them according to 4 major categories of AZ-204 Exam so keep checking for the updates "Develop for the Azure Cloud" Sample Projects 50% of this exam falls in the "Develop for the Cloud" objective, and requires exposure to code. A collection of sample code you can play around with using Visual Studio 2019 or Visual Studio Code: Azure Batch Hello World - https://github.com/Azure-Samples/azure-batch-samples/blob/master/CSharp/GettingStarted/01_HelloWorld Azure Batch AI Code Samples - https://azure.microsoft.com/en-us/resources/samples/?service=batch-ai&sort=0 Service Bus Queue - https://github.com/Azure/azure-service-bus-dotnet Service Bus Code Samples - https://azure.microsoft.com/en-us/resources/samples/?service=service-bus&sort=0 Event Hubs - https://github.com/azure/azure-event-hubs-dotnet Azure Relay Hybrid Connections - https://github.com/azure/azure-relay-dotnet Event Grid Publish/Consume Eve...

Azure Service and Deployment Models

Microsoft Azure is the second largest cloud technology to provide you various services.  In  order to understand the cloud, you need to understand the cloud basics or glossary. Here is the brief introduction and the major terminologies used in cloud Cloud Service Model Cloud systems offer three service models for your solution: ·          IAAS – Infrastructure As A Service -Infrastructure Provisioning/providing ·       PAAS – Platform As A Service - Dev/Deployment Environment provider ·       SAAS – Software As A Service- Web based Application provider    Cloud Deployment Model ·         Public ·         Hybrid ·         Private Cloud Architecture Terminologies  While dealing with Cloud offerings you will come across with these terminologies quite frequently, lets see what...

Az-204 Develop Azure Solutions - Exam Guide

Develop Azure compute solutions (25-30%) Implement IaaS solutions   Provision VMs ·         Quickstart: Create a Windows virtual machine in the Azure portal ·         Tutorial: Create and Manage Windows VMs with Azure PowerShell   configure VMs for remote access ·         How to use SSH keys with Windows on Azure ·         Secure your management ports with just-in-time access create ARM templates ·         What are ARM templates? ·         Tutorial: Create and deploy your first ARM template ·         Understand the structure and syntax of ARM templates ·         Build Azure Resource Manager templates  (Microsoft Learn) Create container images for solutions by using Docker ...