【问题标题】:How to get azure market place publisher id and product information?如何获取 azure market place 发布者 ID 和产品信息?
【发布时间】:2019-04-03 15:48:08
【问题描述】:

我在 Azure 中使用 SendGrid,并且有一个将 SendGridAccount 部署到 Azure 的 ARM 模板。但是,在部署时失败说我需要接受 SendGrid 的市场条款

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

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

【问题讨论】:

  • 可以分享一下模板吗?
  • 部署 SendGrid 帐户的部分看起来像这样{ "name": "[variables('sendgrid_Account_Name')]", "type": "Sendgrid.Email/accounts", "location": "[parameters('Applocation')]", "apiVersion": "2015-01-01", "plan": { "name": "free", "publisher": "Sendgrid", "product": "sendgrid_azure", "promotionCode": "" }, "properties": { "password": "[parameters('sendgrid_Account_Password')]", "acceptMarketingEmails": false, "email": "[parameters('sendgrid_Account_Email')]" } }

标签: azure azure-devops sendgrid azure-marketplace


【解决方案1】:

好吧,模板给出了它:

publisher: Sendgrid
product: sendgrid_azure
name: free

所以命令是:

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

【讨论】:

  • 呃...不知道我怎么错过了那个。谢谢
猜你喜欢
  • 2016-03-09
  • 1970-01-01
  • 1970-01-01
  • 2016-04-25
  • 2015-01-03
  • 1970-01-01
  • 1970-01-01
  • 2020-08-18
  • 2018-02-05
相关资源
最近更新 更多