UNPKG

@stordata/vsphere-soapify

Version:

A NodeJS abstraction layer for the vSphere SOAP API

13 lines (8 loc) 310 B
'use strict'; const HistoryCollector = require('./HistoryCollector'), Event = require('../data/Event'); module.exports = class EventHistoryCollector extends HistoryCollector { readNextEvents() { return this.call('ReadNextEventsAsync', { maxCount: this.filter.maxCount }, Event.ArrayOf); } };