Reputation: 23
What are the options to integrate/connect Azure Digital Twin with an existing cloud environment?
We have a cloud environment, and we would like to consume the data from the Azure Digital Twin.
Is it possible for Azure Digital Twin to send an event to an external cloud environment whenever there is an update in the data? Any reference how to do this?
Is it possible for an external cloud environment to periodically query the data in the Azure Digital Twin? Any reference how to do this?
Upvotes: 1
Views: 150
Reputation: 4085
Both scenarios are possible, Azure Digital Twins is pretty flexible.
Azure Digital Twins currently supports event routing to three different services:
You could route your updates there and have external systems in your other cloud environment listen to the messages. Alternatively, you could use a component like Azure Functions to consume the messages and send them to your cloud environment.
Querying ADT is done through the API, any service that can authenticate with this API can query for the data. ADT uses OAUTH 2.0 for authentication, there are some docs for authentication. But if you want to do this from an external system, look into the various options for authentication here
Upvotes: 2