VMware · Schema

DiskCreateSpec

Specification for creating a virtual disk

Cloud ComputingContainer ManagementHybrid CloudInfrastructureVirtualization

Properties

Name Type Description
type string Host bus adapter type
new_vmdk object Specification for a new VMDK file
backing object Existing disk backing
View JSON Schema on GitHub

JSON Schema

vmware-vsphere-disk-create-spec-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "DiskCreateSpec",
  "type": "object",
  "description": "Specification for creating a virtual disk",
  "properties": {
    "type": {
      "type": "string",
      "description": "Host bus adapter type"
    },
    "new_vmdk": {
      "type": "object",
      "description": "Specification for a new VMDK file"
    },
    "backing": {
      "type": "object",
      "description": "Existing disk backing"
    }
  }
}