如何获取 azure marketplace publisher id 和产品信息?

How to get azure market place publisher id and product information?

我将 SendGrid 与 Azure 一起使用,并且有一个将 SendGridAccount 部署到 Azure 的 ARM 模板。然而,在部署时它失败了,说我需要接受 SendGrid

的市场条款

我得到了接受市场条款的 powershell。 Get-AzureRmMarketplaceTerms -Publisher "SendGrid" -Product "SendGrid Email Delivery" -Name "Free" | Set-AzureRmMarketplaceTerms -Accept

但是我无法为 SendGrid 找到正确的发布者 ID、产品和报价名称。我怎样才能找到这些信息?

好吧,模板给出了它:

publisher: Sendgrid
product: sendgrid_azure
name: free

所以命令是:

Get-AzureRmMarketplaceTerms -Publisher SendGrid -Product sendgrid_azure -Name Free