通过编码动态创建事件网格主题和订阅,而无需转到 Azure 门户?
Create event grid topic and subscription dynamically without going to azure portal by coding?
我想动态创建事件网格主题。每当我的 azure 函数被触发时,它都会根据它获得的输入创建新主题。我只想知道是否有任何方法可以在不访问 azure 门户的情况下创建 azure 主题。
您可以使用适用于 .NET 的 EventGrid 管理库 Microsoft.Azure.Management.EventGrid (documentation)。
@Roman Kiss answer: REST APIs, see more details in the https://docs.microsoft.com/en-us/rest/api/eventgrid/。您可以通过调用 microsoft rest api.
创建事件主题
我想动态创建事件网格主题。每当我的 azure 函数被触发时,它都会根据它获得的输入创建新主题。我只想知道是否有任何方法可以在不访问 azure 门户的情况下创建 azure 主题。
您可以使用适用于 .NET 的 EventGrid 管理库 Microsoft.Azure.Management.EventGrid (documentation)。
@Roman Kiss answer: REST APIs, see more details in the https://docs.microsoft.com/en-us/rest/api/eventgrid/。您可以通过调用 microsoft rest api.
创建事件主题