@stordata/vsphere-soapify
Version:
A NodeJS abstraction layer for the vSphere SOAP API
15 lines (11 loc) • 363 B
JavaScript
;
const ManagedEntity = require('./ManagedEntity'),
ServiceContent = require('../data/ServiceContent');
module.exports = class ServiceInstance extends ManagedEntity {
constructor(client) {
super(client, 'ServiceInstance');
}
retrieveServiceContent() {
return this.call('RetrieveServiceContentAsync', {}, ServiceContent);
}
};