Azure DevTest Labs · JSON Structure

Azure Test Labs Attach New Data Disk Options Structure

Properties to attach new disk to the Virtual Machine.

Type: object Properties: 3
AzureDevelopmentInfrastructureLabsTestingVirtual Machines

AttachNewDataDiskOptions is a JSON Structure definition published by Azure DevTest Labs, describing 3 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

diskName diskSizeGiB diskType

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/azure-test-labs/refs/heads/main/json-structure/azure-test-labs-attach-new-data-disk-options-structure.json",
  "description": "Properties to attach new disk to the Virtual Machine.",
  "type": "object",
  "properties": {
    "diskName": {
      "description": "The name of the disk to be attached.",
      "type": "string"
    },
    "diskSizeGiB": {
      "description": "Size of the disk to be attached in GibiBytes.",
      "format": "int32",
      "type": "integer"
    },
    "diskType": {
      "description": "The storage type for the disk (i.e. Standard, Premium).",
      "enum": [
        "Standard",
        "Premium",
        "StandardSSD"
      ],
      "type": "string",
      "x-ms-enum": {
        "modelAsString": true,
        "name": "StorageType"
      }
    }
  },
  "name": "AttachNewDataDiskOptions"
}