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

Building your first connector


As discussed in the beginning of this chapter, a connector is basically an API app that focuses on connectivity and gets data in and out of Logic Apps. In this section, we will try to build an Azure Storage Table connector. At the time of writing this chapter, Azure Storage Table connector was not available in the marketplace.

Azure Storage Table connector

We are building this connector to pull author or chapter details for this book from a Book Entity in the storage table.

First of all, we will create the API App project for storage table connector. Please follow the steps described to create an API App in Chapter 3Getting Started with API Apps.

API App project will have a BookEntity model and a controller BookController as shown here:

BookController will have an operation GetBookEntity. This operation primarily takes the PartitionKey and the RowKey to fetch the record from the storage table. If you see the model, the author or the chapter is the partition...