我有一个现有的应用服务和一个现有的混合连接,我能够获得创建新的所需的所有参数,Pulumi.Azure.AppService.HybridConnection
但 RelayId,
var webApiHybridConnection = new HybridConnection(
hybridConnectionName,
new Pulumi.Azure.AppService.HybridConnectionArgs
{
AppServiceName = appServiceName,
ResourceGroupName = resourceGroupName,
RelayId = "how do I find this value?",
Hostname = "somehost01.com",
Port = 443,
SendKeyName = $"{_nameSet.AppServiceName(new ServiceName(ServiceName))}-sk",
});
如何使用 Pulumi.Azure 找到 RelayId,以便将混合连接分配给我的应用服务?