Azure ARM模板:获取物联网中心的SKU

Azure ARM模板:获取物联网中心的SKU,azure,azure-devops,azure-resource-manager,Azure,Azure Devops,Azure Resource Manager,使用“参考”关键字,我可以访问我的物联网中心并列出其属性。但是,我找不到任何有关SKU的参考资料。如何列出要输出的物联网中心的sku名称/层 如果您想要获取物联网中心的sku INRAM模板,您可以使用arm模板功能“参考”: [reference(resourceId('Microsoft.Devices/IotHubs', 'hubname'),'2018-04-01','Full')] 比如说 模板 { "$schema": "http://sche

使用“参考”关键字,我可以访问我的物联网中心并列出其属性。但是,我找不到任何有关SKU的参考资料。如何列出要输出的物联网中心的sku名称/层


如果您想要获取物联网中心的sku INRAM模板,您可以使用arm模板功能“参考”

[reference(resourceId('Microsoft.Devices/IotHubs', 'hubname'),'2018-04-01','Full')]
比如说

模板

{
    "$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json",
    "contentVersion": "1.0.0.0",
    "parameters": {
        "hubname": {
            "type": "String"
        },
        "location": {
            "type": "String"
        },
        "sku_name": {
            "type": "String"
        },
        "sku_units": {
            "type": "String"
        },
        "d2c_partitions": {
            "type": "String"
        },
        "features": {
            "type": "String"
        },
        "tags": {
            "type": "Object"
        },
        "cloudEnvironment": {
            "defaultValue": "public",
            "allowedValues": [
                "public",
                "china",
                "usgov"
            ],
            "type": "String",
            "metadata": {
                "description": "Cloud environment to deploy (i.e. usgov/china/ ...)"
            }
        }
    },
    "resources": [
        {
            "type": "Microsoft.Devices/IotHubs",
            "apiVersion": "2020-07-10-preview",
            "name": "[parameters('hubname')]",
            "location": "[parameters('location')]",
            "tags": "[parameters('tags')]",
            "sku": {
                "name": "[parameters('sku_name')]",
                "capacity": "[parameters('sku_units')]"
            },
            "properties": {
                "eventHubEndpoints": {
                    "events": {
                        "retentionTimeInDays": 1,
                        "partitionCount": "[parameters('d2c_partitions')]"
                    }
                },
                "features": "[parameters('features')]"
            }
        },
        {
            "type": "Microsoft.Security/IoTSecuritySolutions",
            "apiVersion": "2019-08-01",
            "name": "[parameters('hubname')]",
            "location": "[parameters('location')]",
            "dependsOn": [
                "[resourceId('Microsoft.Devices/IotHubs', parameters('hubname'))]"
            ],
            "properties": {
                "status": "Enabled",
                "unmaskedIpLoggingStatus": "Enabled",
                "disabledDataSources": [],
                "displayName": "[parameters('hubname')]",
                "iotHubs": [
                    "[resourceId('Microsoft.Devices/IotHubs', parameters('hubname'))]"
                ],
                "recommendationsConfiguration": []
            }
        }
    ],
    "outputs": {
        "iot": {
            "type": "Object",
            "value": "[reference(resourceId('Microsoft.Devices/IotHubs', parameters('hubname')),'2018-04-01','Full').sku]"
        }
    }
}
参数

{
  "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#",
  "contentVersion": "1.0.0.0",
  "parameters": {
    "hubname": {
      "value": "testiot05"
    },
    "location": {
      "value": "eastasia"
    },
    "sku_name": {
      "value": "S1"
    },
    "sku_units": {
      "value": "1"
    },
    "d2c_partitions": {
      "value": "4"
    },
    "features": {
      "value": "None"
    },
    "tags": {
      "value": {}
    },
    "cloudEnvironment": {
      "value": "public"
    }
  }
}