VMware · Schema

MemoryInfo

Memory configuration of a virtual machine

Cloud ComputingContainer ManagementHybrid CloudInfrastructureVirtualization

Properties

Name Type Description
size_MiB integer Memory size in mebibytes
hot_add_enabled boolean Whether memory hot-add is enabled
hot_add_increment_size_MiB integer Granularity for memory hot-add in mebibytes
hot_add_limit_MiB integer Maximum memory size for hot-add in mebibytes
View JSON Schema on GitHub

JSON Schema

vmware-memoryinfo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MemoryInfo",
  "title": "MemoryInfo",
  "type": "object",
  "description": "Memory configuration of a virtual machine",
  "properties": {
    "size_MiB": {
      "type": "integer",
      "description": "Memory size in mebibytes",
      "example": 10
    },
    "hot_add_enabled": {
      "type": "boolean",
      "description": "Whether memory hot-add is enabled",
      "example": true
    },
    "hot_add_increment_size_MiB": {
      "type": "integer",
      "description": "Granularity for memory hot-add in mebibytes",
      "example": 10
    },
    "hot_add_limit_MiB": {
      "type": "integer",
      "description": "Maximum memory size for hot-add in mebibytes",
      "example": 10
    }
  }
}