UNPKG

@stordata/vsphere-soapify

Version:

A NodeJS abstraction layer for the vSphere SOAP API

18 lines (15 loc) 482 B
'use strict'; const DynamicData = require('./DynamicData'), ClusterDasFdmHostState = require('./ClusterDasFdmHostState'); module.exports = class HostRuntimeInfo extends DynamicData { static mappings() { return { bootTime: 'xsd:dateTime', connectionState: 'HostSystemConnectionState', dasHostState: ClusterDasFdmHostState, inMaintenanceMode: 'xsd:boolean', powerState: 'HostSystemPowerState', standbyMode: 'xsd:string' }; } };