VMware · Schema

HostSummary

Summary of an ESXi host in the vCenter inventory

Cloud ComputingContainer ManagementHybrid CloudInfrastructureVirtualization

Properties

Name Type Description
host string Unique identifier of the host (e.g., host-10)
name string Display name or hostname of the ESXi host
connection_state string Connection state of the host
power_state string Power state of the host
View JSON Schema on GitHub

JSON Schema

vmware-vsphere-host-summary-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "HostSummary",
  "type": "object",
  "description": "Summary of an ESXi host in the vCenter inventory",
  "properties": {
    "host": {
      "type": "string",
      "description": "Unique identifier of the host (e.g., host-10)"
    },
    "name": {
      "type": "string",
      "description": "Display name or hostname of the ESXi host"
    },
    "connection_state": {
      "type": "string",
      "description": "Connection state of the host"
    },
    "power_state": {
      "type": "string",
      "description": "Power state of the host"
    }
  }
}