@stordata/vsphere-soapify
Version:
A NodeJS abstraction layer for the vSphere SOAP API
15 lines (12 loc) • 365 B
JavaScript
;
const DynamicData = require('./DynamicData'),
NetIpRouteConfigInfoGateway = require('./NetIpRouteConfigInfoGateway');
module.exports = class NetIpRouteConfigInfoIpRoute extends DynamicData {
static mappings() {
return {
gateway: NetIpRouteConfigInfoGateway,
network: 'xsd:string',
prefixLength: 'xsd:int'
};
}
};