天青自动化帐户中可以为sku.family和sku.capacity属性传递的值是什么?

时间:2018-06-22 08:03:13

标签: azure azure-resource-manager azure-automation arm-template azure-template

此处是用于创建Azure自动帐户的模板格式资源的链接。 什么是自动化帐户的sku,sku.family和sku.capacity?

https://docs.microsoft.com/en-us/azure/templates/microsoft.automation/automationaccounts/jobschedules

通常我们可以在没有sku.family和sku.capacity属性的情况下创建天蓝色的自动化。但是,用于创建手臂模板的传递给这些资源的可能值是什么。

可以传递的sku.family及其对应的sku.capacity是什么??

对于azure资源,sku.family和sku.capacity的一般用法是什么?

2 个答案:

答案 0 :(得分:0)

正如您提到的那个链接,我们可以找到Sku对象作为图片。

enter image description here

我们也可以get information about an automation account,对于免费Sku,有如下响应:

"properties":{
    "sku":{
        "name":"Free",
        "family":null,
        "capacity":null
    },

此外,您可以从此相关的自动化架构中获取更多详细信息

https://raw.githubusercontent.com/Azure/azure-resource-manager-schemas/master/schemas/2015-10-31/Microsoft.Automation.json

希望这会有所帮助。

答案 1 :(得分:0)

在Azure自动化中,不需要SKU系列和SKU功能,并且它们或多或少是占位符-接受“空”。 SKu-name是类型“ SKuNameEnum”的唯一必需属性,具有两个可能的值:“ Basic”和“ Free” 这是2个示例响应,显示了所有3个SKU对象属性,您会注意到族和容量均为“空” enter image description here

供您参考,其中有一个public facing API Browser page (in preview)枚举了所有受支持的REST API,包括API属性,描述,用法和响应示例。只需在下拉菜单中输入您想浏览的Azure服务,然后浏览列出的API。在大多数情况下,它包含一个“ Tryit”工作流程来测试API调用。

enter image description here 希望这会有所帮助。