Nutanix · Schema

Host

A physical host in the Nutanix cluster.

Cloud ManagementHyperconvergedInfrastructureVirtualizationKubernetesDatabase

Properties

Name Type Description
uuid string The UUID of the host.
name string The name of the host.
serial string Serial number of the host.
block_serial string Block serial number.
block_model string Hardware block model.
hypervisor_address string IP address of the hypervisor.
controller_vm_backplane_ip string CVM backplane IP address.
num_cpu_sockets integer Number of physical CPU sockets.
num_cpu_cores integer Number of CPU cores.
memory_capacity_in_bytes integer Total memory capacity in bytes.
hypervisor_type string Type of hypervisor running on the host.
View JSON Schema on GitHub

JSON Schema

nutanix-host-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Host",
  "title": "Host",
  "type": "object",
  "description": "A physical host in the Nutanix cluster.",
  "properties": {
    "uuid": {
      "type": "string",
      "description": "The UUID of the host."
    },
    "name": {
      "type": "string",
      "description": "The name of the host."
    },
    "serial": {
      "type": "string",
      "description": "Serial number of the host."
    },
    "block_serial": {
      "type": "string",
      "description": "Block serial number."
    },
    "block_model": {
      "type": "string",
      "description": "Hardware block model."
    },
    "hypervisor_address": {
      "type": "string",
      "description": "IP address of the hypervisor."
    },
    "controller_vm_backplane_ip": {
      "type": "string",
      "description": "CVM backplane IP address."
    },
    "num_cpu_sockets": {
      "type": "integer",
      "description": "Number of physical CPU sockets."
    },
    "num_cpu_cores": {
      "type": "integer",
      "description": "Number of CPU cores."
    },
    "memory_capacity_in_bytes": {
      "type": "integer",
      "description": "Total memory capacity in bytes."
    },
    "hypervisor_type": {
      "type": "string",
      "description": "Type of hypervisor running on the host."
    }
  }
}