在 arm 模板 azure 中添加 bing 个地图

adding bing maps in arm template azure

我想将 bing 地图资源添加到我的 arm 模板,但是我收到此错误:

"STATUS  BadRequest
STATUS MESSAGE  {
  "error": {
    "code": "ResourcePurchaseValidationFailed",
    "message": "User failed validation to purchase resources. Error message: 'Offer with PublisherId: bingmaps and OfferId: bingmapsapiforenterprise not found.
                If this offer has been created recently, please allow up to 30 minutes for this offer to be available for Purchase. If error persists, contact support.'"
  }
}
PROVISIONING STATE  Failed
"

这是我的部分代码:

"resources": [
        {
            "name": "bingmapsARM",
            "type": "Microsoft.BingMaps/mapApis",
            "apiVersion": "2016-08-18",
            "location": "westus",
            "plan": {
                "publisher": "bingmaps",
                "product": "bingmapsapiforenterprise",
                "promotionCode": null,
                "name": "internal1"
            }
        },

非常感谢任何帮助..

这是我从门户网站获得的信息:

{
    "type": "Microsoft.BingMaps/mapApis",
    "apiVersion": "2016-08-18",
    "name": "yyy",
    "location": "xxx",
    "plan": {
        "publisher": "bingmaps",
        "product": "mapapis",
        "name": "public1",
        "promotionCode": ""
    },
    "properties": {}
}