Host System Get Runtime

Host System Get Runtime

Runtime state information about the host such as connection state.

Request
URI
GET
https://{vcenter-host}/sdk/vim25/{release}/HostSystem/{moId}/runtime
COPY
Path Parameters
string
moId
Required

The unique identifier for the managed object to which the property attaches; the serialized managed object reference for a request has the form moType/moId, in this case HostSystem/{moId}.

string
release
Required

The vSphere release schema. The current specification covers vSphere 8.0.2.0 APIs.


Authentication
This operation uses the following authentication methods.
Responses
200

OK

Returns HostRuntimeInfo of type(s) application/json
This response body class contains all of the following: DataObject
{
    "_typeName": "string",
    "connectionState": "string",
    "powerState": "string",
    "standbyMode": "string",
    "inMaintenanceMode": false,
    "inQuarantineMode": false,
    "bootTime": "string",
    "healthSystemRuntime": {
        "systemHealthInfo": {
            "numericSensorInfo": [
                {
                    "_typeName": "string",
                    "name": "string",
                    "healthState": {
                        "key": "string"
                    },
                    "currentReading": 0,
                    "unitModifier": 0,
                    "baseUnits": "string",
                    "rateUnits": "string",
                    "sensorType": "string",
                    "id": "string",
                    "sensorNumber": 0,
                    "timeStamp": "string",
                    "fru": {
                        "type": "string",
                        "partName": "string",
                        "partNumber": "string",
                        "manufacturer": "string",
                        "serialNumber": "string",
                        "mfgTimeStamp": "string"
                    }
                }
            ]
        },
        "hardwareStatusInfo": {
            "memoryStatusInfo": [
                {
                    "_typeName": "string",
                    "name": "string",
                    "status": {
                        "key": "string"
                    }
                }
            ],
            "cpuStatusInfo": [
                {
                    "_typeName": "string",
                    "name": "string",
                    "status": {
                        "key": "string"
                    }
                }
            ],
            "storageStatusInfo": [
                {
                    "_typeName": "string",
                    "name": "string",
                    "status": {
                        "key": "string"
                    },
                    "operationalInfo": [
                        {
                            "_typeName": "string",
                            "property": "string",
                            "value": "string"
                        }
                    ]
                }
            ],
            "dpuStatusInfo": [
                {
                    "_typeName": "string",
                    "name": "string",
                    "status": {
                        "key": "string"
                    },
                    "dpuId": "string",
                    "fru": {
                        "type": "string",
                        "partName": "string",
                        "partNumber": "string",
                        "manufacturer": "string",
                        "serialNumber": "string",
                        "mfgTimeStamp": "string"
                    },
                    "sensors": [
                        {
                            "_typeName": "string",
                            "sensorId": "string",
                            "healthState": {
                                "key": "string"
                            },
                            "reading": "string",
                            "units": "string",
                            "timeStamp": "string"
                        }
                    ]
                }
            ]
        }
    },
    "dasHostState": {
        "state": "string",
        "stateReporter": {
            "type": "string",
            "value": "string"
        }
    },
    "tpmPcrValues": [
        {
            "_typeName": "string",
            "digestMethod": "string",
            "digestValue": [
                0
            ],
            "objectName": "string",
            "pcrNumber": 0
        }
    ],
    "vsanRuntimeInfo": {
        "membershipList": [
            {
                "_typeName": "string",
                "nodeUuid": "string",
                "hostname": "string"
            }
        ],
        "diskIssues": [
            {
                "_typeName": "string",
                "diskId": "string",
                "issue": "string"
            }
        ],
        "accessGenNo": 0
    },
    "networkRuntimeInfo": {
        "netStackInstanceRuntimeInfo": [
            {
                "_typeName": "string",
                "netStackInstanceKey": "string",
                "state": "string",
                "vmknicKeys": [
                    "string"
                ],
                "maxNumberOfConnections": 0,
                "currentIpV6Enabled": false
            }
        ],
        "networkResourceRuntime": {
            "pnicResourceInfo": [
                {
                    "_typeName": "string",
                    "pnicDevice": "string",
                    "availableBandwidthForVMTraffic": 0,
                    "unusedBandwidthForVMTraffic": 0,
                    "placedVirtualNics": [
                        {
                            "_typeName": "string",
                            "vm": {
                                "type": "string",
                                "value": "string"
                            },
                            "vnicKey": "string",
                            "reservation": 0
                        }
                    ]
                }
            ]
        }
    },
    "vFlashResourceRuntimeInfo": {
        "usage": 0,
        "capacity": 0,
        "accessible": false,
        "capacityForVmCache": 0,
        "freeForVmCache": 0
    },
    "hostMaxVirtualDiskCapacity": 0,
    "cryptoState": "string",
    "cryptoKeyId": {
        "keyId": "string",
        "providerId": {
            "id": "string"
        }
    },
    "statelessNvdsMigrationReady": "string",
    "stateEncryption": {
        "protectionMode": "string",
        "requireSecureBoot": false,
        "requireExecInstalledOnly": false
    }
}
connectionState
Required

Defines a host's connection state.

Possible values:

  • connected: Connected to the server.

    For ESX Server, this is always the setting.

  • notResponding: VirtualCenter is not receiving heartbeats from the server.

    The state automatically changes to connected once heartbeats are received again. This state is typically used to trigger an alarm on the host.

  • disconnected: The user has explicitly taken the host down.

    VirtualCenter does not expect to receive heartbeats from the host. The next time a heartbeat is received, the host is moved to the connected state again and an event is logged.

powerState
Required

Defines a host's power state.

Possible values:

  • poweredOn: The host is powered on.

    A host that is entering standby mode entering is also in this state.

  • poweredOff: The host was specifically powered off by the user through VirtualCenter.

    This state is not a cetain state, because after VirtualCenter issues the command to power off the host, the host might crash, or kill all the processes but fail to power off.

  • standBy: The host was specifically put in standby mode, either explicitly by the user, or automatically by DPM.

    This state is not a cetain state, because after VirtualCenter issues the command to put the host in standby state, the host might crash, or kill all the processes but fail to power off. A host that is exiting standby mode exiting is also in this state.

  • unknown: If the host is disconnected, or notResponding, we cannot possibly have knowledge of its power state.

    Hence, the host is marked as unknown.

string
standbyMode
Optional

The host's standby mode.

For valid values see HostStandbyModeEnum. The property is only populated by vCenter server. If queried directly from a ESX host, the property is is unset.

boolean
inMaintenanceMode
Required

The flag to indicate whether or not the host is in maintenance mode.

This flag is set when the host has entered the maintenance mode. It is not set during the entering phase of maintenance mode.

See also HostSystem.EnterMaintenanceMode_Task, HostSystem.ExitMaintenanceMode_Task.

boolean
inQuarantineMode
Optional

The flag to indicate whether or not the host is in quarantine mode.

InfraUpdateHa will recommend to set this flag based on the HealthUpdates received by the HealthUpdateProviders configured for the cluster. A host that is reported as degraded will be recommended to enter quarantine mode, while a host that is reported as healthy will be recommended to exit quarantine mode. Execution of these recommended actions will set this flag. Hosts in quarantine mode will be avoided by vSphere DRS as long as the increased consolidation in the cluster does not negatively affect VM performance.

See also HealthUpdateManager, ClusterInfraUpdateHaConfigInfo, ClusterHostInfraUpdateHaModeAction.

string As date-time As date-time
bootTime
Optional

The time when the host was booted.

healthSystemRuntime
Optional

The system health runtime information

dasHostState
Optional

The ClusterDasFdmHostState data object describes the availability state of each active host in a vSphere HA enabled cluster.

In a vSphere HA cluster, the active hosts form a fault domain. A host is inactive if it is in standby or maintenance mode, or it has been disconnected from vCenter Server. A vSphere HA agent, called the Fault Domain Manager (FDM), runs on each host in the fault domain.

One FDM serves as the master and the remaining FDMs as its slaves. The master is responsible for monitoring the availability of the hosts and VMs in the cluster, and restarting any VMs that fail due to a host failure or non-user-initiated power offs. The master is also responsible for reporting fault-domain state to vCenter Server.

The master FDM is determined through election by the FDMs that are alive at the time. An election occurs in the following circumstances:

  • When the vSphere HA feature is enabled for the cluster.
  • When the master's host fails.
  • When the management network is partitioned. In a network partition there will be a master for each partition. However, only one master will be responsible for a given VM. When the partition is resolved, all but one of the masters will abdicate.
  • After a host in a vSphere HA cluster powers back up following a failure that caused all hosts in the cluster to power off.

The slaves are responsible for reporting state updates to the master and restarting VMs as required. All FDMs provide the VM/Application Health Monitoring Service.

tpmPcrValues
Optional

Deprecated as of @released("5.1") this information should be considered to be neither complete nor reliable.

The array of PCR digest values stored in the TPM device since the last host boot time.

vsanRuntimeInfo
Optional

This data object contains VSAN cluster runtime information from the perspective of the host in question.

This data object is used to represent read-only state whose values may change during operation.

networkRuntimeInfo
Optional

This data type describes network related runtime info

vFlashResourceRuntimeInfo
Optional

Data object provides vFlash resource runtime usage.

integer As int64 As int64
hostMaxVirtualDiskCapacity
Optional

The maximum theoretical virtual disk capacity supported by this host

string
cryptoState
Optional

Encryption state of the host.

Valid values are enumerated by the CryptoState type.

cryptoKeyId
Optional

Data Object representing a cryptographic key.

string
statelessNvdsMigrationReady
Optional

Indicating the host is ready for NVDS to VDS migration.

See HostRuntimeInfoStatelessNvdsMigrationStateEnum for supported values.

Since: vSphere API Release 7.0.2.0

stateEncryption
Optional

This data type describes the host's persistent state encryption.

Since: vSphere API Release 7.0.3.0


Host System Operations
POST
Host System Acquire Cim Services Ticket
POST
Host System Configure Crypto Key
POST
Host System Destroy Task
POST
Host System Disconnect Host Task
POST
Host System Enable Crypto
POST
Host System Enter Lockdown Mode
POST
Host System Enter Maintenance Mode Task
POST
Host System Exit Lockdown Mode
POST
Host System Exit Maintenance Mode Task
GET
Host System Get Alarm Actions Enabled
GET
Host System Get Answer File Validation Result
GET
Host System Get Answer File Validation State
GET
Host System Get Available Field
GET
Host System Get Capability
GET
Host System Get Compliance Check Result
GET
Host System Get Compliance Check State
GET
Host System Get Config
GET
Host System Get Config Issue
GET
Host System Get Config Manager
GET
Host System Get Config Status
GET
Host System Get Custom Value
GET
Host System Get Datastore
GET
Host System Get Datastore Browser
GET
Host System Get Declared Alarm State
GET
Host System Get Disabled Method
GET
Host System Get Effective Role
GET
Host System Get Hardware
GET
Host System Get Licensable Resource
GET
Host System Get Name
GET
Host System Get Network
GET
Host System Get Overall Status
GET
Host System Get Parent
GET
Host System Get Permission
GET
Host System Get Precheck Remediation Result
GET
Host System Get Recent Task
GET
Host System Get Remediation Result
GET
Host System Get Remediation State
GET
Host System Get Runtime
GET
Host System Get Summary
GET
Host System Get System Resources
GET
Host System Get Tag
GET
Host System Get Triggered Alarm State
GET
Host System Get Value
GET
Host System Get Vm
POST
Host System Power Down Host To Stand By Task
POST
Host System Power Up Host From Stand By Task
POST
Host System Prepare Crypto
POST
Host System Query Host Connection Info
POST
Host System Query Memory Overhead
POST
Host System Query Memory Overhead Ex
POST
Host System Query Product Locker Location
POST
Host System Query Tpm Attestation Report
POST
Host System Reboot Host Task
POST
Host System Reconfigure Host For DAS Task
POST
Host System Reconnect Host Task
POST
Host System Reload
POST
Host System Rename Task
POST
Host System Retrieve Free Epc Memory
POST
Host System Retrieve Hardware Uptime
POST
Host System Set Custom Value
POST
Host System Shutdown Host Task
POST
Host System Update Flags
POST
Host System Update Ipmi
POST
Host System Update Product Locker Location Task
POST
Host System Update System Resources
POST
Host System Update System Swap Configuration