简体   繁体   English

如何获得azure市场发布者ID和产品信息?

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

I am using SendGrid with Azure and have a ARM template that deploys SendGridAccount to Azure. 我使用SendGrid与Azure,并有一个ARM模板,将SendGridAccount部署到Azure。 However while deploying it fails saying that I need to accept market place terms for SendGrid 然而,虽然部署它失败说我需要接受SendGrid的市场条款

I got the powershell that accepts the market place terms. 我得到了接受市场条款的powershell。 Get-AzureRmMarketplaceTerms -Publisher "SendGrid" -Product "SendGrid Email Delivery" -Name "Free" | Set-AzureRmMarketplaceTerms -Accept

However I am not able to find the correct publisher id, product and offer names for the SendGrid. 但是,我无法找到SendGrid的正确发布者ID,产品和商品名称。 How can I find this information? 我怎样才能找到这些信息?

well, the template gives it away: 好吧,模板给出了它:

publisher: Sendgrid
product: sendgrid_azure
name: free

so the command would be: 所以命令是:

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

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM