Skip to content
Closed
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 @@ -423,6 +423,68 @@
"items": {
"$ref": "#/definitions/BillingResources"
}
},
"vmSizesWithEncryptionAtHost": {
"description": "The vm sizes when enabling encryption at host.",
"type": "array",
"items": {
"type": "string"
},
"readOnly": true
},
"vmSizeProperties": {
"description": "The vm size properties.",
"type": "array",
"items": {
"$ref": "#/definitions/VmSizeProperty"
},
"readOnly": true
}
}
},
"VmSizeProperty": {
"type": "object",
"description": "The vm size property",
"properties": {
"name": {
"description": "The vm size name",
"type": "string"
},
"cores": {
"description": "The number of cores that the vm size has.",
"type": "string"
},
"dataDiskStorageTier": {
"description": "The data disk storage tier of the vm size.",
"type": "string"
},
"label": {
"description": "The label of the vm size.",
"type": "string"
},
"maxDataDiskCount": {
"description": "The max data disk count of the vm size.",
"type": "string"
},
"memoryInMb": {
"description": "The memory whose unit is MB of the vm size.",
"type": "string"
},
"supportedByVirtualMachines": {
"description": "This indicates this vm size is supported by virtual machines or not",
"type": "string"
},
"supportedByWebWorkerRoles": {
"description": "The indicates this vm size is supported by web worker roles or not",
"type": "string"
},
"virtualMachineResourceDiskSizeInMb": {
"description": "The virtual machine resource disk size whose unit is MB of the vm size.",
"type": "string"
},
"webWorkerResourceDiskSizeInMb": {
"description": "The web worker resource disk size whose unit is MB of the vm size.",
"type": "string"
}
}
},
Expand Down