You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Maybe I'm missing something - I couldn't find any docs. I saw that there are APIs added to manage Azure relays, but I couldn't find APIs or docs on how to actually communicate via an Azure relay. For example the node js SDK has APIs like:
https.createRelayListenUri(ns, path);
https.createRelayedServer()
that can send and receive via the hybrid connection. i.e. all you need are:
const ns = "{RelayNamespace}";
const path = "{HybridConnectionName}";
const keyrule = "{SASKeyName}";
const key = "{SASKeyValue}";
and you can connect. I couldn't find anything like that in the Python SDK. If it exists, can you point me to the APIs (and create an example)? Or if not, can you add them?
The text was updated successfully, but these errors were encountered:
@swingtempo, thanks for creating this issue and letting us know your interest in a Python SDK. We have created an internal tracking item and according to user interest we will consider implementing a Python SDK for Azure Relay.
I will be closing this issue, but please feel free to reopen it if you have additional questions.
Maybe I'm missing something - I couldn't find any docs. I saw that there are APIs added to manage Azure relays, but I couldn't find APIs or docs on how to actually communicate via an Azure relay. For example the node js SDK has APIs like:
https.createRelayListenUri(ns, path);
https.createRelayedServer()
that can send and receive via the hybrid connection. i.e. all you need are:
const ns = "{RelayNamespace}";
const path = "{HybridConnectionName}";
const keyrule = "{SASKeyName}";
const key = "{SASKeyValue}";
and you can connect. I couldn't find anything like that in the Python SDK. If it exists, can you point me to the APIs (and create an example)? Or if not, can you add them?
The text was updated successfully, but these errors were encountered: