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-vsphere-memory-info-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "MemoryInfo",
  "type": "object",
  "description": "Memory configuration of a virtual machine",
  "properties": {
    "size_MiB": {
      "type": "integer",
      "description": "Memory size in mebibytes"
    },
    "hot_add_enabled": {
      "type": "boolean",
      "description": "Whether memory hot-add is enabled"
    },
    "hot_add_increment_size_MiB": {
      "type": "integer",
      "description": "Granularity for memory hot-add in mebibytes"
    },
    "hot_add_limit_MiB": {
      "type": "integer",
      "description": "Maximum memory size for hot-add in mebibytes"
    }
  }
}