Azure Virtual Machines · Schema
VirtualMachineSize
Describes the properties of a VM size.
Cloud ComputingComputeIaaSInfrastructureVirtual Machines
Properties
| Name | Type | Description |
|---|---|---|
| name | string | The name of the virtual machine size. |
| numberOfCores | integer | The number of cores supported by the virtual machine size. |
| osDiskSizeInMB | integer | The OS disk size allowed by the virtual machine size. |
| resourceDiskSizeInMB | integer | The resource disk size allowed by the virtual machine size. |
| memoryInMB | integer | The amount of memory in MB supported by the virtual machine size. |
| maxDataDiskCount | integer | The maximum number of data disks allowed by the virtual machine size. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/VirtualMachineSize",
"title": "VirtualMachineSize",
"type": "object",
"description": "Describes the properties of a VM size.",
"properties": {
"name": {
"type": "string",
"description": "The name of the virtual machine size."
},
"numberOfCores": {
"type": "integer",
"format": "int32",
"description": "The number of cores supported by the virtual machine size."
},
"osDiskSizeInMB": {
"type": "integer",
"format": "int32",
"description": "The OS disk size allowed by the virtual machine size."
},
"resourceDiskSizeInMB": {
"type": "integer",
"format": "int32",
"description": "The resource disk size allowed by the virtual machine size."
},
"memoryInMB": {
"type": "integer",
"format": "int32",
"description": "The amount of memory in MB supported by the virtual machine size."
},
"maxDataDiskCount": {
"type": "integer",
"format": "int32",
"description": "The maximum number of data disks allowed by the virtual machine size."
}
}
}