无法更改当前处于消费层的 API 管理的定价层

Unable to change pricing tier for API Management currently in Consumption tier

有关扩展 API 管理服务 (https://docs.microsoft.com/en-us/azure/api-management/upgrade-and-scale) 的页面表明在“部署 + 基础架构”(以及其他几个)下应该有一个“定价层”blade ,但我的服务只有“外部缓存”和“自定义域”。单击概览页面中的“定价层”link 不会执行任何操作。我在哪里更改定价层?

注意:这是大约 2 周前创建的 ARM-template-created consumption-tier 服务。

this issue 的响应表明您无法更改消费实例的定价层。我找不到任何提到这一点的文档,但我想 Consumption 实例是在不同的物理硬件上提供的,如果不重新提供就不能简单地更改。

如果 API 管理部署在消费模型中,则无法更改层。

验证检查 ARM 模板 SKU 默认值。

    "sku": {
      "type": "string",
      "allowedValues": [
        "Developer",
        "Basic",
        "Standard",
        "Premium",
        "Consumption"
      ],
      "defaultValue": "Consumption",
      "metadata": {
        "description": "The pricing tier of this API Management service"
      }