Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1476,7 +1476,7 @@
},
"capacity": {
"$ref": "#/definitions/AzureCapacity",
"description": "The SKU capacity."
"description": "The number of instances of the cluster."
}
},
"description": "Azure resource SKU definition."
Expand Down Expand Up @@ -1504,11 +1504,11 @@
}
},
"minimum": {
"description": "Minimum allowed capacity.",
"description": "Minimum allowed instances count.",
"type": "integer"
},
"maximum": {
"description": "Maximum allowed capacity.",
"description": "Maximum allowed instances count.",
"type": "integer"
},
"default": {
Expand All @@ -1529,27 +1529,33 @@
"description": "SKU name.",
"type": "string",
"enum": [
"D13_v2",
"D14_v2",
"L8",
"L16",
"D11_v2",
"D12_v2",
"L4"
"Standard_DS13_v2+1TB_PS",
"Standard_DS13_v2+2TB_PS",
"Standard_DS14_v2+3TB_PS",
"Standard_DS14_v2+4TB_PS",
"Standard_D13_v2",
"Standard_D14_v2",
"Standard_L8s",
"Standard_L16s",
"Standard_D11_v2",
"Standard_D12_v2",
"Standard_L4s",
"Dev(No SLA)_Standard_D11_v2"
],
"x-ms-enum": {
"name": "AzureSkuName",
"modelAsString": true
}
},
"capacity": {
"description": "SKU capacity.",
"description": "The number of instances of the cluster.",
"type": "integer"
},
"tier": {
"description": "SKU tier.",
"type": "string",
"enum": [
"Basic",
"Standard"
],
"x-ms-enum": {
Expand Down