добавление карт bing в шаблоне arm azure - PullRequest
0 голосов
/ 24 сентября 2019

Я хочу добавить ресурс карты Bing в шаблон руки, но я получаю эту ошибку:

"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"
            }
        },

Любая помощь очень ценится.

1 Ответ

0 голосов
/ 25 сентября 2019

вот что я получил от портала:

{
    "type": "Microsoft.BingMaps/mapApis",
    "apiVersion": "2016-08-18",
    "name": "yyy",
    "location": "xxx",
    "plan": {
        "publisher": "bingmaps",
        "product": "mapapis",
        "name": "public1",
        "promotionCode": ""
    },
    "properties": {}
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...