Book Image

Robust Cloud Integration with Azure

By : Gyanendra Kumar Gautam, Ashish Bhambhani, Abhishek Kumar, James Corbould, Mahindra Morar, Martin Abbott
Book Image

Robust Cloud Integration with Azure

By: Gyanendra Kumar Gautam, Ashish Bhambhani, Abhishek Kumar, James Corbould, Mahindra Morar, Martin Abbott

Overview of this book

Any software developers, architects, and technical managers lookng to learn about Azure IaaS essentials need look no further. This book is ideal for Microsoft Enterprise developers, DevOps or any IT professionals looking to connect cloud-based and on-premises systems with Azure.
Table of Contents (23 chapters)
Robust Cloud Integration with Azure
Credits
Foreword
About the Authors
About the Reviewers
www.PacktPub.com
Customer Feedback
Preface

Workflow definition language


The workflow definition contains the actual business logic that is defined as part of the Logic Apps built. Workflow definition language is described thoroughly over Microsoft documentation: https://docs.microsoft.com/en-us/rest/api/logic/definition-language.

The basic structure of workflow definition Language is as follows:

{ 
      "$schema": "<schema-of the-definition>", 
      "contentVersion": "<version-number-of-definition>", 
      "parameters": { <parameter-definitions-of-definition> }, 
      "triggers": [ { <definition-of-flow-triggers> } ], 
      "actions": [ { <definition-of-flow-actions> } ], 
      "outputs": { <output-of-definition> }     
} 

Element name

Description

$schema

This specifies the location of the JSON schema file that is used for workflow definition language. This is required when you reference a definition externally.

contentVersion

This specifies...