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

Output


In Azure Logic Apps, if you have a particular status or value in your Logic App workflow that you want to track for each run, you can define that within run output section and it will appear in the Management REST API for that run, and in the management UI for that run in the Azure Portal.

Outputs are not used to respond the caller service. To respond to an incoming request response, action type should be used.

The basic structure for parameters is shown here:

"outputs": { 
  "key1": { 
    "value": "value1", 
    "type" : "<type-of-value>" 
  } 
} 
  • key1: Specifies the key identifier for the output. Replace key1 with a name that you want to use to identify the output.

  • value1: Specifies the value of the output.

  • <type-of-value>: Specifies the type for the value that was specified. The possible types of values are:

    • string

    • secure string

    • int

    • bool

    • array

    • object

    • Expression, operators and functions

You can execute expressions including operators and functions...