StorageProfile

Specifies the storage settings for the virtual machine disks.

Cloud ComputingComputeIaaSInfrastructureVirtual Machines

Properties

Name Type Description
imageReference object
osDisk object
dataDisks array Specifies the parameters that are used to add a data disk to a virtual machine.
View JSON Schema on GitHub

JSON Schema

microsoft-azure-virtual-machines-storageprofile-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/StorageProfile",
  "title": "StorageProfile",
  "type": "object",
  "description": "Specifies the storage settings for the virtual machine disks.",
  "properties": {
    "imageReference": {
      "$ref": "#/components/schemas/ImageReference"
    },
    "osDisk": {
      "$ref": "#/components/schemas/OSDisk"
    },
    "dataDisks": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/DataDisk"
      },
      "description": "Specifies the parameters that are used to add a data disk to a virtual machine."
    }
  }
}