web-dev-qa-db-ja.com

サーバーファーム(サービスプラン)SKU

Azureアプリサービスプラン(サーバーファーム)でサポートされているSKUの名前と階層を一覧表示する、一般的なドキュメントはありますか?.

例:名前: "S1"、階層: "Standard" = S1標準。

および名前: "Y1"、階層: "動的" =関数の消費計画。

サポートされている値のリスト(Y2消費計画はありますか?)とサーバー構成は、計画に役立ちます。

13
Hoffmania

リソースのSKUと機能を見つけるには、さまざまな方法があります。このリンクはいくつかのオプションを参照しています: https://docs.Microsoft.com/en-us/Azure/azure-resource-manager/resource-manager-sku-not-available-errors

現在のサーバーファームの説明は次のとおりです。

name    Tier        Full name
D1      Shared      an D1 Shared
F1      Free        an F1 Free
B1      Basic       an B1 Basic
B2      Basic       an B2 Basic
B3      Basic       an B3 Basic
S1      Standard    an S1 Standard
S2      Standard    an S2 Standard
S3      Standard    an S3 Standard
P1      Premium     an P1 Premium
P2      Premium     an P2 Premium
P3      Premium     an P3 Premium
P1V2    PremiumV2   an P1V2 PremiumV2
P2V2    PremiumV2   an P2V2 PremiumV2
P3V2    PremiumV2   an P3V2 PremiumV2
I1      Isolated    an I2 Isolated
I2      Isolated    an I2 Isolated
I3      Isolated    an I3 Isolated
Y1      Dynamic     a  function consumption plan

サーバーファームを展開するには、ARMで次のリソース定義を使用します。

{
  "type": "Microsoft.Web/serverfarms",
  "apiVersion": "2016-09-01",
  "name": "[parameters('hostingPlanName')]",
  "location": "[resourceGroup().location]",
  "properties": {
    "name": "[parameters('hostingPlanName')]"
  },
  "sku": {
    "name": "[parameters('hostingPlanSkuName')]",
    "tier": "[parameters('hostingPlanSkuTier')]"
  }
}

あるいは、消費計画のために;より具体的なAPIバージョンを使用できます。

{
  "type": "Microsoft.Web/serverfarms",
  "apiVersion": "2015-04-01",
  "name": "[variables('hostingPlanName')]",
  "location": "[resourceGroup().location]",
  "properties": {
      "name": "[variables('hostingPlanName')]",
      "computeMode": "Dynamic",
      "sku": "Dynamic"
  }
}

y2消費計画はありますか?

現在、Azureはこれをサポートしていません。Azureは1つのタイプの消費プランのみをサポートしています。

詳細については、こちらをご覧ください 公式ドキュメント:Azure App Serviceプランの概要

18
Shui shengbao

このAPIは、既存のApp Serviceプランで使用可能なApp ServiceプランSKUのリストを提供します

GET https://management.Azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/serverfarms/{name}/skus?api-version=2016-09-01

Microsoftのドキュメントは ここ です。

0
MWL88