Broadcom · Schema

Broadcom Host

A Host represents a physical ESXi server that provides compute, memory, storage, and networking resources to virtual machines within a vSphere or VCF environment.

Cloud InfrastructureGatewaysManagementNetworksObservabilityVirtualizationFortune 500

Properties

Name Type Description
id string The unique identifier of the host.
name string The hostname or display name of the host.
fqdn string The fully qualified domain name of the host.
connection_state string The connection state of the host.
power_state string The power state of the host.
cluster string The identifier of the cluster to which this host belongs.
cpu object CPU resource information for the host.
memory object Memory resource information for the host.
version string The ESXi version running on the host.
status string The commissioning status of the host in VCF.
ip_addresses array Network addresses assigned to the host.
View JSON Schema on GitHub

JSON Schema

broadcom-host-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://github.com/api-evangelist/broadcom/blob/main/json-schema/broadcom-host-schema.json",
  "title": "Broadcom Host",
  "description": "A Host represents a physical ESXi server that provides compute, memory, storage, and networking resources to virtual machines within a vSphere or VCF environment.",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "The unique identifier of the host."
    },
    "name": {
      "type": "string",
      "description": "The hostname or display name of the host."
    },
    "fqdn": {
      "type": "string",
      "description": "The fully qualified domain name of the host."
    },
    "connection_state": {
      "type": "string",
      "enum": [
        "CONNECTED",
        "DISCONNECTED",
        "NOT_RESPONDING"
      ],
      "description": "The connection state of the host."
    },
    "power_state": {
      "type": "string",
      "enum": [
        "POWERED_ON",
        "POWERED_OFF",
        "STANDBY"
      ],
      "description": "The power state of the host."
    },
    "cluster": {
      "type": "string",
      "description": "The identifier of the cluster to which this host belongs."
    },
    "cpu": {
      "type": "object",
      "description": "CPU resource information for the host.",
      "properties": {
        "cores": {
          "type": "integer",
          "description": "The total number of CPU cores."
        },
        "frequency_MHz": {
          "type": "integer",
          "description": "The CPU frequency in megahertz."
        },
        "model": {
          "type": "string",
          "description": "The CPU model name."
        }
      }
    },
    "memory": {
      "type": "object",
      "description": "Memory resource information for the host.",
      "properties": {
        "total_MiB": {
          "type": "integer",
          "description": "Total physical memory in mebibytes."
        },
        "used_MiB": {
          "type": "integer",
          "description": "Used physical memory in mebibytes."
        }
      }
    },
    "version": {
      "type": "string",
      "description": "The ESXi version running on the host."
    },
    "status": {
      "type": "string",
      "enum": [
        "ASSIGNED",
        "UNASSIGNED_USEABLE",
        "UNASSIGNED_UNUSEABLE"
      ],
      "description": "The commissioning status of the host in VCF."
    },
    "ip_addresses": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "ip_address": {
            "type": "string",
            "description": "The IP address."
          },
          "type": {
            "type": "string",
            "enum": [
              "MANAGEMENT",
              "VMOTION",
              "VSAN"
            ],
            "description": "The type of network associated with this IP."
          }
        }
      },
      "description": "Network addresses assigned to the host."
    }
  }
}