I am using Azure Event grid service to be used for notifications. Here I want to create new hybrid connection in a Relay namespace using C# code when a user logs in. How can I do that?
How to create a Hybrid connection dynamically through code
347 Views Asked by Amit Sharma At
2
There are 2 best solutions below
0

After much workaround, I finally found a way to do this. We can use Microsoft's Microsoft.Azure.Management.Relay
Nuget package.
public static HybridConnection CreateHybridConnection(string clientId, string tenantId, string clientSecret, string subscriptionId)
{
var credentials = ApplicationTokenProvider.LoginSilentAsync(tenantId, clientId, clientSecret).GetAwaiter().GetResult();
DelegatingHandler[] handlers = null;
var client = new RelayManagementClient(credentials, handlers);
client.SubscriptionId = subscriptionId;
var connection = new HybridConnection(requiresClientAuthorization: true);
return client.HybridConnections.CreateOrUpdateAsync(<resourceGroupName>, <relayNameSpace>, "My Hybrid Connection", connection).GetAwaiter().GetResult();
}
Thanks for sharing this, it was a great help starting on this.
That package is now deprecated so here is an updated version using the new Azure.ResourceManager.* packages.