@stordata/vsphere-soapify
Version:
A NodeJS abstraction layer for the vSphere SOAP API
18 lines (13 loc) • 388 B
JavaScript
;
const HostHostBusAdapter = require('./HostHostBusAdapter');
module.exports = class HostFibreChannelHba extends HostHostBusAdapter {
static mappings() {
return {
...super.mappings(),
nodeWorldWideName: 'DecimalWorldWideName',
portWorldWideName: 'DecimalWorldWideName',
portType: 'FibreChannelPortType',
speed: 'xsd:long'
};
}
};