VMware · Schema

HostInfo

Detailed ESXi host information

Cloud ComputingContainer ManagementHybrid CloudInfrastructureVirtualization

Properties

Name Type Description
name string Host name
connection_state string
power_state string
View JSON Schema on GitHub

JSON Schema

vmware-hostinfo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/HostInfo",
  "title": "HostInfo",
  "type": "object",
  "description": "Detailed ESXi host information",
  "properties": {
    "name": {
      "type": "string",
      "description": "Host name",
      "example": "Example Title"
    },
    "connection_state": {
      "type": "string",
      "enum": [
        "CONNECTED",
        "DISCONNECTED",
        "NOT_RESPONDING"
      ],
      "example": "CONNECTED"
    },
    "power_state": {
      "type": "string",
      "enum": [
        "POWERED_ON",
        "POWERED_OFF",
        "STANDBY"
      ],
      "example": "POWERED_ON"
    }
  }
}