@stordata/vsphere-soapify
Version:
A NodeJS abstraction layer for the vSphere SOAP API
16 lines (13 loc) • 345 B
JavaScript
;
const DynamicData = require('./DynamicData'),
PhysicalNicLinkInfo = require('./PhysicalNicLinkInfo');
module.exports = class PhysicalNic extends DynamicData {
static mappings() {
return {
key: 'xsd:string',
device: 'xsd:string',
mac: 'xsd:string',
linkSpeed: PhysicalNicLinkInfo
};
}
};