UNPKG

@stordata/vsphere-soapify

Version:

A NodeJS abstraction layer for the vSphere SOAP API

22 lines (18 loc) 405 B
'use strict'; const DynamicData = require('./DynamicData'); module.exports = class HostHostBusAdapter extends DynamicData { static mappings() { return { bus: 'xsd:int', device: 'xsd:string', driver: 'xsd:string', key: 'xsd:string', model: 'xsd:string', pci: 'xsd:string', status: 'xsd:string' }; } static requestFully() { return true; } };