@stordata/vsphere-soapify
Version:
A NodeJS abstraction layer for the vSphere SOAP API
16 lines (13 loc) • 430 B
JavaScript
;
const DynamicData = require('./DynamicData'),
NetDhcpConfigInfo = require('./NetDhcpConfigInfo'),
NetIpConfigInfoIpAddress = require('./NetIpConfigInfoIpAddress');
module.exports = class NetIpConfigInfo extends DynamicData {
static mappings() {
return {
autoConfigurationEnabled: 'xsd:boolean',
dhcp: NetDhcpConfigInfo,
ipAddress: NetIpConfigInfoIpAddress.ArrayOf
};
}
};