user7127000
user7127000

Reputation: 3233

How to directly access Azure On-Prem Data Gateway through code

I have set up an Azure On-Premise Data Gateway by following these instructions here. I also tested accessing through Logic Apps following these instructions.

However, I don't want to use Logic Apps. Are there any client libraries where I can directly access the gateway instead of only being able to talk through the Logic Apps workflow schema?

All I'm trying to do is stream files from file paths on-prem using C#.

Upvotes: 0

Views: 2612

Answers (2)

David Browne - Microsoft
David Browne - Microsoft

Reputation: 89091

The gateway is built on top of Azure Relay, which you can use directly. Hybrid connections are also available in App Service.

Upvotes: 1

Jayendran
Jayendran

Reputation: 10930

Unfortunately, there is no such DotNet SDK or any another SDK is available for you as of now which might help in On-Prem Data GateWay accessing.

As of now, you can use only the Power BI, Microsoft Flow, Logic Apps, and PowerApps services that may help you to securely transfer the data between On-Prem and Cloud.

There is also some list of an available data source for on-prem data gateway. You can find it here

If you are trying to move on-Prem SQL server to Azure SQL Database then ADF would be helpful

So finally, you would need to continue with your Logic Apps or other services which currently support the onPrem Data Gateway

Upvotes: 1

Related Questions