@stordata/vsphere-soapify
Version:
A NodeJS abstraction layer for the vSphere SOAP API
20 lines (17 loc) • 641 B
JavaScript
;
const DynamicData = require('./DynamicData'),
HostStorageDeviceInfo = require('./HostStorageDeviceInfo'),
HostMultipathStateInfo = require('./HostMultipathStateInfo'),
HostFileSystemVolumeInfo = require('./HostFileSystemVolumeInfo'),
HostNetworkInfo = require('./HostNetworkInfo');
module.exports = class HostConfigInfo extends DynamicData {
static mappings() {
return {
fileSystemVolume: HostFileSystemVolumeInfo,
multipathState: HostMultipathStateInfo,
storageDevice: HostStorageDeviceInfo,
wakeOnLanCapable: 'xsd:boolean',
network: HostNetworkInfo
};
}
};